From c2f97fadb5b7600960431943f9945772e0065aaa Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sat, 26 Jul 2025 21:34:07 +0100 Subject: [PATCH 1/6] Remove obsolete/duplicated code and get back to passing tests --- .../.idea.DatabaseTesting/.idea/sonarlint.xml | 8 + .idea/.idea.DatabaseTesting/.idea/vcs.xml | 7 + DatabaseTesting.sln | 7 - .../AStar.Dev.Infrastructure.FilesDb.xml | 27 - .../ComplexPropertyBuilderConfiguration.cs | 23 - .../Common/IComplexPropertyConfiguration.cs | 17 - .../AStar.Dev.Infrastructure.xml | 24 +- .../ComplexPropertyBuilderConfiguration.cs | 0 .../IComplexPropertyConfiguration.cs | 0 .../AStar.Dev.Utilities.xml | 2 - support/ConsoleApp1/ConsoleApp1.csproj | 21 - support/ConsoleApp1/Program.cs | 14 - support/ConsoleApp1/files.json | 66002 ---------------- .../MockFilesContextFactory.cs | 2 +- 14 files changed, 28 insertions(+), 66126 deletions(-) create mode 100644 .idea/.idea.DatabaseTesting/.idea/sonarlint.xml create mode 100644 .idea/.idea.DatabaseTesting/.idea/vcs.xml delete mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/Common/ComplexPropertyBuilderConfiguration.cs delete mode 100644 src/AStar.Dev.Infrastructure.FilesDb/Data/Common/IComplexPropertyConfiguration.cs rename src/AStar.Dev.Infrastructure/{ => Data/Configurations}/ComplexPropertyBuilderConfiguration.cs (100%) rename src/AStar.Dev.Infrastructure/{ => Data/Configurations}/IComplexPropertyConfiguration.cs (100%) delete mode 100644 support/ConsoleApp1/ConsoleApp1.csproj delete mode 100644 support/ConsoleApp1/Program.cs delete mode 100644 support/ConsoleApp1/files.json diff --git a/.idea/.idea.DatabaseTesting/.idea/sonarlint.xml b/.idea/.idea.DatabaseTesting/.idea/sonarlint.xml new file mode 100644 index 0000000..d117234 --- /dev/null +++ b/.idea/.idea.DatabaseTesting/.idea/sonarlint.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/.idea/.idea.DatabaseTesting/.idea/vcs.xml b/.idea/.idea.DatabaseTesting/.idea/vcs.xml new file mode 100644 index 0000000..8306744 --- /dev/null +++ b/.idea/.idea.DatabaseTesting/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/DatabaseTesting.sln b/DatabaseTesting.sln index a8177be..537dd88 100644 --- a/DatabaseTesting.sln +++ b/DatabaseTesting.sln @@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Technical.Debt.Re EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Utilities", "support\AStar.Dev.Utilities\AStar.Dev.Utilities.csproj", "{28720605-9CA9-4A33-BB00-655F4B76CA19}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "support\ConsoleApp1\ConsoleApp1.csproj", "{8DAFC3FE-4221-4D86-8880-2DD29CA7BA68}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.FilesDb.Tests.Integration", "test\AStar.Dev.Infrastructure.FilesDb.Tests.Unit\AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj", "{2860766A-6251-4874-9535-199ED5E29AA0}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbContextHelpers", "support\DbContextHelpers\DbContextHelpers.csproj", "{FE38F9CD-8573-44D1-A03F-73D318B6E86D}" @@ -52,10 +50,6 @@ Global {28720605-9CA9-4A33-BB00-655F4B76CA19}.Debug|Any CPU.Build.0 = Debug|Any CPU {28720605-9CA9-4A33-BB00-655F4B76CA19}.Release|Any CPU.ActiveCfg = Release|Any CPU {28720605-9CA9-4A33-BB00-655F4B76CA19}.Release|Any CPU.Build.0 = Release|Any CPU - {8DAFC3FE-4221-4D86-8880-2DD29CA7BA68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8DAFC3FE-4221-4D86-8880-2DD29CA7BA68}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8DAFC3FE-4221-4D86-8880-2DD29CA7BA68}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8DAFC3FE-4221-4D86-8880-2DD29CA7BA68}.Release|Any CPU.Build.0 = Release|Any CPU {2860766A-6251-4874-9535-199ED5E29AA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2860766A-6251-4874-9535-199ED5E29AA0}.Debug|Any CPU.Build.0 = Debug|Any CPU {2860766A-6251-4874-9535-199ED5E29AA0}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -85,7 +79,6 @@ Global {2860766A-6251-4874-9535-199ED5E29AA0} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} {08DE9921-9593-4530-B062-84A41A6FAA90} = {F06BC983-3361-41B2-B64F-7A77A2E32782} {28720605-9CA9-4A33-BB00-655F4B76CA19} = {F06BC983-3361-41B2-B64F-7A77A2E32782} - {8DAFC3FE-4221-4D86-8880-2DD29CA7BA68} = {F06BC983-3361-41B2-B64F-7A77A2E32782} {FE38F9CD-8573-44D1-A03F-73D318B6E86D} = {F06BC983-3361-41B2-B64F-7A77A2E32782} {C00B2A62-E46E-4F6E-BC8A-39088261A17E} = {D61F13DC-3A32-42BE-8687-F795D7332A51} {626B3E85-6C5D-4D8B-96BB-BF2D375326CA} = {D61F13DC-3A32-42BE-8687-F795D7332A51} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index 7d16c1b..9db5759 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -12,33 +12,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Common/ComplexPropertyBuilderConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Common/ComplexPropertyBuilderConfiguration.cs deleted file mode 100644 index 272077e..0000000 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Common/ComplexPropertyBuilderConfiguration.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Microsoft.EntityFrameworkCore.Metadata.Builders; - -namespace AStar.Dev.Infrastructure.FilesDb.Data.Common; - -/// -/// -/// -internal static class ComplexPropertyBuilderConfiguration -{ - /// - /// - /// - /// - /// - /// - /// - public static ComplexPropertyBuilder Configure(this ComplexPropertyBuilder propertyBuilder, IComplexPropertyConfiguration configuration) - where TEntity : class - { - configuration.Configure(propertyBuilder); - return propertyBuilder; - } -} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Common/IComplexPropertyConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Common/IComplexPropertyConfiguration.cs deleted file mode 100644 index b9f13a8..0000000 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Common/IComplexPropertyConfiguration.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Microsoft.EntityFrameworkCore.Metadata.Builders; - -namespace AStar.Dev.Infrastructure.FilesDb.Data.Common; - -/// -/// -/// -/// -internal interface IComplexPropertyConfiguration where TEntity : class -{ - /// - /// - /// - /// - /// - ComplexPropertyBuilder Configure(ComplexPropertyBuilder builder); -} diff --git a/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml b/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml index 3c194ef..beff89e 100644 --- a/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml +++ b/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml @@ -4,18 +4,6 @@ AStar.Dev.Infrastructure - - - - - - - - - - - - The class is used to aid configuring the @@ -70,6 +58,18 @@ The instance of to convert. The converted representation + + + + + + + + + + + + diff --git a/src/AStar.Dev.Infrastructure/ComplexPropertyBuilderConfiguration.cs b/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs similarity index 100% rename from src/AStar.Dev.Infrastructure/ComplexPropertyBuilderConfiguration.cs rename to src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs diff --git a/src/AStar.Dev.Infrastructure/IComplexPropertyConfiguration.cs b/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs similarity index 100% rename from src/AStar.Dev.Infrastructure/IComplexPropertyConfiguration.cs rename to src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs diff --git a/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml b/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml index 149522f..76938df 100644 --- a/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml +++ b/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml @@ -67,12 +67,10 @@ - - diff --git a/support/ConsoleApp1/ConsoleApp1.csproj b/support/ConsoleApp1/ConsoleApp1.csproj deleted file mode 100644 index 6b85661..0000000 --- a/support/ConsoleApp1/ConsoleApp1.csproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - Exe - net9.0 - enable - enable - - - - - PreserveNewest - - - - - - - - - diff --git a/support/ConsoleApp1/Program.cs b/support/ConsoleApp1/Program.cs deleted file mode 100644 index d14c38c..0000000 --- a/support/ConsoleApp1/Program.cs +++ /dev/null @@ -1,14 +0,0 @@ -// See https://aka.ms/new-console-template for more information - -using System.Text.Json; -using AStar.Dev.Infrastructure.FilesDb.Data; -using AStar.Dev.Infrastructure.FilesDb.Models; -using AStar.Dev.Utilities; - -var context = new FilesContext(); - -var files = await File.ReadAllTextAsync("../../../files.json"); -var fileList = files.FromJson>(JsonSerializerOptions.Web); -context.FileDetails.AddRange(fileList); -await context.SaveChangesAsync(); -Console.WriteLine("Hello, World!"); diff --git a/support/ConsoleApp1/files.json b/support/ConsoleApp1/files.json deleted file mode 100644 index 7410055..0000000 --- a/support/ConsoleApp1/files.json +++ /dev/null @@ -1,66002 +0,0 @@ -[ - { - "fileClassifications": [], - "id": { - "value": 0 - }, - "imageDetail": { - "width": 6734, - "height": 6601 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 91801, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:29:47.5780443+00:00", - "fileLastModified": "2025-07-14T09:29:47.5782318+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:29:47.5773051+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1 - }, - "imageDetail": { - "width": 6394, - "height": 8458 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45197, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4468007+00:00", - "fileLastModified": "2025-07-14T09:21:52.446945+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4458268+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 2 - }, - "imageDetail": { - "width": 155, - "height": 2107 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 22081, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473639+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473644+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447359+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 3 - }, - "imageDetail": { - "width": 9965, - "height": 9318 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 91451, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473655+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473656+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473656+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473651+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 4 - }, - "imageDetail": { - "width": 7557, - "height": 4155 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47003, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473661+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473661+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473662+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473659+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 5 - }, - "imageDetail": { - "width": 8008, - "height": 3466 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 74465, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473665+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473665+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473663+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 6 - }, - "imageDetail": { - "width": 8608, - "height": 9870 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86997, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473684+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473685+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473685+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473683+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 7 - }, - "imageDetail": { - "width": 7772, - "height": 8742 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 92722, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473693+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473694+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473691+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 8 - }, - "imageDetail": { - "width": 8482, - "height": 2221 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31919, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473697+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473698+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473698+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473695+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 9 - }, - "imageDetail": { - "width": 7843, - "height": 4240 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33939, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473701+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473702+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473699+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 10 - }, - "imageDetail": { - "width": 318, - "height": 7603 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58887, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473706+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473707+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473707+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473705+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 11 - }, - "imageDetail": { - "width": 7005, - "height": 9981 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77037, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473711+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473712+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473712+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473709+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 12 - }, - "imageDetail": { - "width": 4741, - "height": 2166 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50881, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473715+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473716+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473716+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473714+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 13 - }, - "imageDetail": { - "width": 1384, - "height": 4976 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 40597, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473719+00:00", - "fileLastModified": "2025-07-14T09:21:52.447372+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473718+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 14 - }, - "imageDetail": { - "width": 6054, - "height": 2698 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69420, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473728+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473729+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473729+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473722+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 15 - }, - "imageDetail": { - "width": 5168, - "height": 6117 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 70130, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447376+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473761+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473758+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 16 - }, - "imageDetail": { - "width": 5509, - "height": 8877 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24422, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473764+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473765+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473763+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 17 - }, - "imageDetail": { - "width": 6000, - "height": 3842 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 71086, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473768+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473769+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473766+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 18 - }, - "imageDetail": { - "width": 7853, - "height": 9233 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 95960, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473773+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473773+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473774+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473771+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 19 - }, - "imageDetail": { - "width": 6466, - "height": 6374 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 71277, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473777+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473777+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473775+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 20 - }, - "imageDetail": { - "width": 4135, - "height": 3714 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 99512, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447378+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473781+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473781+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473779+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 21 - }, - "imageDetail": { - "width": 2722, - "height": 8169 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 61750, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473785+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473785+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473783+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 22 - }, - "imageDetail": { - "width": 3521, - "height": 4694 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82420, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473788+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473789+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473789+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473787+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 23 - }, - "imageDetail": { - "width": 2012, - "height": 9592 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 92757, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.44738+00:00", - "fileLastModified": "2025-07-14T09:21:52.44738+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473801+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473791+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 24 - }, - "imageDetail": { - "width": 8117, - "height": 4511 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86514, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473804+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473804+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473805+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473802+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 25 - }, - "imageDetail": { - "width": 7067, - "height": 5602 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 25428, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473808+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473808+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473809+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473806+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 26 - }, - "imageDetail": { - "width": 3621, - "height": 8914 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87843, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473812+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473812+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473813+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447381+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 27 - }, - "imageDetail": { - "width": 6151, - "height": 4770 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 32602, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473816+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473816+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473814+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 28 - }, - "imageDetail": { - "width": 9210, - "height": 8849 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 22558, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473838+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473839+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473836+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 29 - }, - "imageDetail": { - "width": 1911, - "height": 4515 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 56039, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473842+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473843+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473841+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 30 - }, - "imageDetail": { - "width": 5269, - "height": 3306 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 37750, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473849+00:00", - "fileLastModified": "2025-07-14T09:21:52.447385+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447385+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473848+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 31 - }, - "imageDetail": { - "width": 2559, - "height": 3275 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 67259, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473854+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473854+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473854+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473852+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 32 - }, - "imageDetail": { - "width": 8151, - "height": 3427 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92135, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473857+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473858+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473858+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473856+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 33 - }, - "imageDetail": { - "width": 2071, - "height": 8581 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 73660, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473861+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473862+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473862+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447386+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 34 - }, - "imageDetail": { - "width": 5908, - "height": 4947 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85096, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473866+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473867+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473868+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473865+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 35 - }, - "imageDetail": { - "width": 2719, - "height": 2353 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 83504, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473877+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473878+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473869+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 36 - }, - "imageDetail": { - "width": 1905, - "height": 9679 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 67766, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473881+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473881+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473879+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 37 - }, - "imageDetail": { - "width": 7916, - "height": 8810 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 80133, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473884+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473885+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473883+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 38 - }, - "imageDetail": { - "width": 3184, - "height": 9737 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 33336, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473888+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473889+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473889+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473887+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 39 - }, - "imageDetail": { - "width": 3041, - "height": 2019 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59862, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473892+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473893+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473893+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473891+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 40 - }, - "imageDetail": { - "width": 2042, - "height": 2514 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 61689, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473896+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473897+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473897+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473895+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 41 - }, - "imageDetail": { - "width": 3000, - "height": 9939 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 56131, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473959+00:00", - "fileLastModified": "2025-07-14T09:21:52.447396+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473958+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 42 - }, - "imageDetail": { - "width": 2491, - "height": 4700 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 45804, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473963+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473963+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473961+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 43 - }, - "imageDetail": { - "width": 6792, - "height": 2328 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83304, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473966+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473967+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473967+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473965+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 44 - }, - "imageDetail": { - "width": 8224, - "height": 5740 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 77990, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447397+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473971+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473969+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 45 - }, - "imageDetail": { - "width": 2975, - "height": 7495 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 94107, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473974+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473974+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473972+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 46 - }, - "imageDetail": { - "width": 406, - "height": 6886 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 89265, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4473977+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473978+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473978+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473976+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 47 - }, - "imageDetail": { - "width": 7063, - "height": 9113 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 69576, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4473981+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473981+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473979+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 48 - }, - "imageDetail": { - "width": 7101, - "height": 9596 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 79075, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473984+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473985+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473986+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473983+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 49 - }, - "imageDetail": { - "width": 6521, - "height": 5139 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 73093, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4473988+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473989+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473987+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 50 - }, - "imageDetail": { - "width": 2911, - "height": 7704 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 84656, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4473992+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473992+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447399+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 51 - }, - "imageDetail": { - "width": 5814, - "height": 5735 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46024, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4473995+00:00", - "fileLastModified": "2025-07-14T09:21:52.4473996+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4473997+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473994+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 52 - }, - "imageDetail": { - "width": 6701, - "height": 5147 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 96449, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4473998+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 53 - }, - "imageDetail": { - "width": 6527, - "height": 7890 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73917, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474003+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474003+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474004+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474001+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 54 - }, - "imageDetail": { - "width": 390, - "height": 3835 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47345, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474046+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474047+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474047+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474044+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 55 - }, - "imageDetail": { - "width": 7870, - "height": 7852 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 26297, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447405+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474051+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474051+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474048+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 56 - }, - "imageDetail": { - "width": 6432, - "height": 9604 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 24029, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474054+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474054+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474055+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474052+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 57 - }, - "imageDetail": { - "width": 8202, - "height": 8836 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 89972, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474058+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474059+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474057+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 58 - }, - "imageDetail": { - "width": 7341, - "height": 8598 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71491, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474062+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474062+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447406+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 59 - }, - "imageDetail": { - "width": 6486, - "height": 6228 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 34402, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474065+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474066+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474066+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474064+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 60 - }, - "imageDetail": { - "width": 196, - "height": 9140 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 28728, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474069+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474069+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447407+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474067+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 61 - }, - "imageDetail": { - "width": 7901, - "height": 5508 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 30173, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474072+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474073+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474071+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 62 - }, - "imageDetail": { - "width": 3476, - "height": 4057 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21189, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474076+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474077+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474075+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 63 - }, - "imageDetail": { - "width": 5632, - "height": 2892 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 64949, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447408+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474081+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474079+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 64 - }, - "imageDetail": { - "width": 5697, - "height": 7843 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31900, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474084+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474084+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474085+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474082+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 65 - }, - "imageDetail": { - "width": 8819, - "height": 6970 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 91710, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474088+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474088+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474089+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474086+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 66 - }, - "imageDetail": { - "width": 6917, - "height": 7451 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 87778, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474116+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474117+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474115+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 67 - }, - "imageDetail": { - "width": 1683, - "height": 4270 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55151, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447412+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474121+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474119+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 68 - }, - "imageDetail": { - "width": 2533, - "height": 8355 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 23272, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474124+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474124+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474122+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 69 - }, - "imageDetail": { - "width": 8601, - "height": 7661 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 22997, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474128+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474128+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474129+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474126+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 70 - }, - "imageDetail": { - "width": 328, - "height": 8883 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 78789, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474131+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474132+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474132+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447413+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 71 - }, - "imageDetail": { - "width": 2725, - "height": 5081 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 53010, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474135+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474135+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474134+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 72 - }, - "imageDetail": { - "width": 2492, - "height": 6146 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33781, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474138+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474139+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474139+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474137+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 73 - }, - "imageDetail": { - "width": 350, - "height": 2357 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44889, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474142+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474142+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474143+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447414+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 74 - }, - "imageDetail": { - "width": 2503, - "height": 6462 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 99071, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474146+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474146+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474147+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474144+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 75 - }, - "imageDetail": { - "width": 7838, - "height": 7082 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60806, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447415+00:00", - "fileLastModified": "2025-07-14T09:21:52.447415+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474151+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474148+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 76 - }, - "imageDetail": { - "width": 5716, - "height": 4767 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 43593, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474154+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474154+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474152+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 77 - }, - "imageDetail": { - "width": 7540, - "height": 2587 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46887, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474157+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474158+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474156+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 78 - }, - "imageDetail": { - "width": 5378, - "height": 5304 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 57002, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474161+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474161+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474159+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 79 - }, - "imageDetail": { - "width": 9024, - "height": 8208 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94978, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474164+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474165+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474163+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 80 - }, - "imageDetail": { - "width": 8107, - "height": 6625 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87664, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474192+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474192+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447419+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 81 - }, - "imageDetail": { - "width": 4570, - "height": 8040 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 25569, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474195+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474196+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474196+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474194+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 82 - }, - "imageDetail": { - "width": 1872, - "height": 7027 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70974, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474199+00:00", - "fileLastModified": "2025-07-14T09:21:52.44742+00:00", - "fileLastViewed": "2025-07-14T09:21:52.44742+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474198+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 83 - }, - "imageDetail": { - "width": 1104, - "height": 2983 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 88604, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474203+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474204+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474204+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474202+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 84 - }, - "imageDetail": { - "width": 2860, - "height": 4956 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 88894, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474207+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474208+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474208+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474206+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 85 - }, - "imageDetail": { - "width": 5377, - "height": 8087 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 74129, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474211+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474211+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474209+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 86 - }, - "imageDetail": { - "width": 5650, - "height": 3006 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92728, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474215+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474215+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474213+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 87 - }, - "imageDetail": { - "width": 5786, - "height": 4076 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 62964, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474219+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474219+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474217+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 88 - }, - "imageDetail": { - "width": 4668, - "height": 5390 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95143, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474222+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474223+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474223+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474221+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 89 - }, - "imageDetail": { - "width": 8886, - "height": 9598 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95528, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474226+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474227+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474227+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474225+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 90 - }, - "imageDetail": { - "width": 327, - "height": 4955 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 96387, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447423+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474231+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474231+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474229+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 91 - }, - "imageDetail": { - "width": 2601, - "height": 6575 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 51880, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474234+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474235+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474233+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 92 - }, - "imageDetail": { - "width": 9900, - "height": 9628 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69143, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474238+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474238+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474236+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 93 - }, - "imageDetail": { - "width": 9207, - "height": 6591 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 88989, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474267+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474267+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474268+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447424+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 94 - }, - "imageDetail": { - "width": 5728, - "height": 7625 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21255, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474271+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474271+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474272+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474269+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 95 - }, - "imageDetail": { - "width": 3705, - "height": 5772 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 51001, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474275+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474275+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474273+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 96 - }, - "imageDetail": { - "width": 3589, - "height": 6348 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 36256, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474278+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474279+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474279+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474277+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 97 - }, - "imageDetail": { - "width": 3634, - "height": 7974 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37667, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474282+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474283+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474283+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474281+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 98 - }, - "imageDetail": { - "width": 6140, - "height": 5341 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 42190, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474286+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474286+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474285+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 99 - }, - "imageDetail": { - "width": 908, - "height": 3398 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59120, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474289+00:00", - "fileLastModified": "2025-07-14T09:21:52.447429+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474288+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 100 - }, - "imageDetail": { - "width": 7079, - "height": 2335 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87585, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474293+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474294+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474292+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 101 - }, - "imageDetail": { - "width": 9408, - "height": 7445 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73514, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474297+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474297+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474295+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 102 - }, - "imageDetail": { - "width": 3323, - "height": 8530 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 45452, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.44743+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474301+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474298+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 103 - }, - "imageDetail": { - "width": 2770, - "height": 5680 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 38231, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474304+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474304+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474302+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 104 - }, - "imageDetail": { - "width": 7614, - "height": 5105 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 84941, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474307+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474308+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474306+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 105 - }, - "imageDetail": { - "width": 4272, - "height": 7595 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 21133, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474311+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474311+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474309+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 106 - }, - "imageDetail": { - "width": 9638, - "height": 4839 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 50230, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474314+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474315+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474313+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 107 - }, - "imageDetail": { - "width": 7416, - "height": 9817 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23946, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474342+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474343+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447434+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 108 - }, - "imageDetail": { - "width": 3883, - "height": 2021 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33796, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474346+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474347+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474347+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474344+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 109 - }, - "imageDetail": { - "width": 6156, - "height": 9762 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 88867, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447435+00:00", - "fileLastModified": "2025-07-14T09:21:52.447435+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474351+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474348+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 110 - }, - "imageDetail": { - "width": 893, - "height": 4188 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 83394, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474354+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474354+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474352+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 111 - }, - "imageDetail": { - "width": 5013, - "height": 7928 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 30636, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474357+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474358+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474356+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 112 - }, - "imageDetail": { - "width": 2676, - "height": 7260 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69847, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474361+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474361+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474362+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474359+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 113 - }, - "imageDetail": { - "width": 4915, - "height": 8402 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29072, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474365+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474365+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474363+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 114 - }, - "imageDetail": { - "width": 5226, - "height": 4752 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74906, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474368+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474369+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474369+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474367+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 115 - }, - "imageDetail": { - "width": 7299, - "height": 7055 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 93669, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474372+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474373+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474373+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447437+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 116 - }, - "imageDetail": { - "width": 8347, - "height": 2351 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63978, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474376+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474377+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474377+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474375+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 117 - }, - "imageDetail": { - "width": 4468, - "height": 3331 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59216, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447438+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474381+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474381+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474379+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 118 - }, - "imageDetail": { - "width": 4112, - "height": 7329 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27323, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474384+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474385+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474385+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474383+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 119 - }, - "imageDetail": { - "width": 6780, - "height": 2125 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 78115, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474388+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474388+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474389+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474386+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 120 - }, - "imageDetail": { - "width": 8600, - "height": 3401 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 95928, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474392+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474392+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474393+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447439+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 121 - }, - "imageDetail": { - "width": 9899, - "height": 7593 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96278, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447442+00:00", - "fileLastModified": "2025-07-14T09:21:52.447442+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474421+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474418+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 122 - }, - "imageDetail": { - "width": 1800, - "height": 9694 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 88683, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474424+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474424+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474422+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 123 - }, - "imageDetail": { - "width": 3613, - "height": 8385 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 42552, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474427+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474428+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474428+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474426+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 124 - }, - "imageDetail": { - "width": 9270, - "height": 6348 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82049, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474431+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474432+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447443+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 125 - }, - "imageDetail": { - "width": 2728, - "height": 8925 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 43855, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474435+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474435+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474436+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474433+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 126 - }, - "imageDetail": { - "width": 5258, - "height": 9560 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 61105, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474439+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474439+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447444+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474437+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 127 - }, - "imageDetail": { - "width": 9205, - "height": 3830 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33109, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474442+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474443+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474441+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 128 - }, - "imageDetail": { - "width": 5268, - "height": 6718 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37948, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474446+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474447+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474445+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 129 - }, - "imageDetail": { - "width": 2891, - "height": 6270 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 39386, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447445+00:00", - "fileLastModified": "2025-07-14T09:21:52.447445+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474451+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474448+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 130 - }, - "imageDetail": { - "width": 3001, - "height": 2704 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 35208, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474455+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474455+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474456+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474453+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 131 - }, - "imageDetail": { - "width": 5573, - "height": 2724 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94826, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474613+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474614+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474615+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447461+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 132 - }, - "imageDetail": { - "width": 2335, - "height": 3152 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92058, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474619+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474619+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474617+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 133 - }, - "imageDetail": { - "width": 1507, - "height": 2977 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 75008, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474622+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474623+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474623+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447462+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 134 - }, - "imageDetail": { - "width": 5282, - "height": 9268 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 64012, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474626+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474626+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474627+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474624+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 135 - }, - "imageDetail": { - "width": 8883, - "height": 3959 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 94915, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447463+00:00", - "fileLastModified": "2025-07-14T09:21:52.447463+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474631+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474628+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 136 - }, - "imageDetail": { - "width": 7332, - "height": 4072 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 39130, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474634+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474634+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474632+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 137 - }, - "imageDetail": { - "width": 7445, - "height": 4901 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 62124, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474638+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474638+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474636+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 138 - }, - "imageDetail": { - "width": 4589, - "height": 6915 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53362, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474641+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474642+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447464+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 139 - }, - "imageDetail": { - "width": 7325, - "height": 4771 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45427, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474645+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474645+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474646+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474643+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 140 - }, - "imageDetail": { - "width": 1724, - "height": 8463 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 50013, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474649+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474649+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474647+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 141 - }, - "imageDetail": { - "width": 8184, - "height": 2317 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47677, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474652+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474653+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474653+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474651+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 142 - }, - "imageDetail": { - "width": 5985, - "height": 3533 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60652, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474656+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474657+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474657+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474655+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 143 - }, - "imageDetail": { - "width": 9095, - "height": 4067 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26598, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447466+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474661+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474659+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 144 - }, - "imageDetail": { - "width": 6087, - "height": 3020 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 81446, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474705+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474705+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474662+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 145 - }, - "imageDetail": { - "width": 1731, - "height": 9389 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32334, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474708+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474709+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474707+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 146 - }, - "imageDetail": { - "width": 2513, - "height": 5848 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69390, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474712+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474712+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474713+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447471+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 147 - }, - "imageDetail": { - "width": 1155, - "height": 6968 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77025, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474716+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474717+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474717+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474714+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 148 - }, - "imageDetail": { - "width": 4931, - "height": 4208 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63805, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447472+00:00", - "fileLastModified": "2025-07-14T09:21:52.447472+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474721+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474718+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 149 - }, - "imageDetail": { - "width": 4545, - "height": 9547 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29831, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474724+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474724+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474725+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474722+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 150 - }, - "imageDetail": { - "width": 9245, - "height": 5557 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 97998, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474727+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474728+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474729+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474726+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 151 - }, - "imageDetail": { - "width": 7466, - "height": 3819 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 20983, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474731+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474732+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447473+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 152 - }, - "imageDetail": { - "width": 7665, - "height": 3085 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80813, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474735+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474735+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474733+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 153 - }, - "imageDetail": { - "width": 8615, - "height": 2089 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68510, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474738+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474739+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474737+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 154 - }, - "imageDetail": { - "width": 5230, - "height": 8272 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 30474, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474742+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474742+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447474+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 155 - }, - "imageDetail": { - "width": 1039, - "height": 8407 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 49695, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474746+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474746+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474744+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 156 - }, - "imageDetail": { - "width": 7589, - "height": 6782 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 61275, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474749+00:00", - "fileLastModified": "2025-07-14T09:21:52.447475+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474747+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 157 - }, - "imageDetail": { - "width": 5074, - "height": 3008 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 30751, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474753+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474753+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474751+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 158 - }, - "imageDetail": { - "width": 6088, - "height": 3725 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83117, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474791+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474792+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447479+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 159 - }, - "imageDetail": { - "width": 2966, - "height": 4554 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43413, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474795+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474795+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474796+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474793+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 160 - }, - "imageDetail": { - "width": 2921, - "height": 7334 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 38498, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474799+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474799+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474797+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 161 - }, - "imageDetail": { - "width": 5344, - "height": 8892 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 40079, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474802+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474803+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474801+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 162 - }, - "imageDetail": { - "width": 7821, - "height": 2383 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 67404, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474806+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474806+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474804+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 163 - }, - "imageDetail": { - "width": 1343, - "height": 8542 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44683, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474809+00:00", - "fileLastModified": "2025-07-14T09:21:52.447481+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474808+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 164 - }, - "imageDetail": { - "width": 9225, - "height": 4720 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 38037, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474813+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474813+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474811+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 165 - }, - "imageDetail": { - "width": 9596, - "height": 8814 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32992, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474816+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474817+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474815+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 166 - }, - "imageDetail": { - "width": 2657, - "height": 8081 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 62298, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447482+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474821+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474819+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 167 - }, - "imageDetail": { - "width": 5472, - "height": 2267 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 71170, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474824+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474824+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474822+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 168 - }, - "imageDetail": { - "width": 8713, - "height": 7089 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 93917, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474827+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474828+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474826+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 169 - }, - "imageDetail": { - "width": 5510, - "height": 6786 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29822, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474831+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474831+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474829+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 170 - }, - "imageDetail": { - "width": 2028, - "height": 8982 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 30605, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474834+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474835+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474833+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 171 - }, - "imageDetail": { - "width": 888, - "height": 9932 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47122, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474838+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474838+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474836+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 172 - }, - "imageDetail": { - "width": 9067, - "height": 5134 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69762, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474866+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474866+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474864+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 173 - }, - "imageDetail": { - "width": 2560, - "height": 5168 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 93881, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474869+00:00", - "fileLastModified": "2025-07-14T09:21:52.447487+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474868+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 174 - }, - "imageDetail": { - "width": 7644, - "height": 7049 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90471, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474873+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474873+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474874+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474871+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 175 - }, - "imageDetail": { - "width": 5063, - "height": 2011 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 62933, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474877+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474877+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474875+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 176 - }, - "imageDetail": { - "width": 2575, - "height": 9698 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61313, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447488+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474881+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474879+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 177 - }, - "imageDetail": { - "width": 7133, - "height": 9374 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 71654, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474884+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474884+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474885+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474882+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 178 - }, - "imageDetail": { - "width": 8392, - "height": 2510 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 26336, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474888+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474889+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474889+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474886+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 179 - }, - "imageDetail": { - "width": 6957, - "height": 9637 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 98809, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474892+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474892+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474893+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474891+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 180 - }, - "imageDetail": { - "width": 5446, - "height": 8689 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 61545, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474896+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474896+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474894+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 181 - }, - "imageDetail": { - "width": 8023, - "height": 2557 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37426, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474899+00:00", - "fileLastModified": "2025-07-14T09:21:52.44749+00:00", - "fileLastViewed": "2025-07-14T09:21:52.44749+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474898+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 182 - }, - "imageDetail": { - "width": 516, - "height": 3889 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 45445, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474903+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474904+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474904+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474902+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 183 - }, - "imageDetail": { - "width": 6795, - "height": 4078 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 81837, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474907+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474908+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474908+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474905+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 184 - }, - "imageDetail": { - "width": 6845, - "height": 5317 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 81405, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474911+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474912+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474912+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447491+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 185 - }, - "imageDetail": { - "width": 2744, - "height": 8307 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 59755, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474943+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474944+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474914+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 186 - }, - "imageDetail": { - "width": 6402, - "height": 4591 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 22534, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474947+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474947+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474945+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 187 - }, - "imageDetail": { - "width": 4461, - "height": 4951 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22778, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447495+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474951+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474951+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474949+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 188 - }, - "imageDetail": { - "width": 2730, - "height": 3982 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 25029, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474954+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474955+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474953+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 189 - }, - "imageDetail": { - "width": 8828, - "height": 9962 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 61079, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474958+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474958+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474959+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474956+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 190 - }, - "imageDetail": { - "width": 2238, - "height": 7018 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60829, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4474962+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474962+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447496+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 191 - }, - "imageDetail": { - "width": 4017, - "height": 3278 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95889, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474965+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474966+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474964+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 192 - }, - "imageDetail": { - "width": 4803, - "height": 9368 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65990, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474969+00:00", - "fileLastModified": "2025-07-14T09:21:52.447497+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474967+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 193 - }, - "imageDetail": { - "width": 2597, - "height": 8595 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 88857, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474972+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474973+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474971+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 194 - }, - "imageDetail": { - "width": 9178, - "height": 2061 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41121, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4474976+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474977+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474977+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474974+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 195 - }, - "imageDetail": { - "width": 9105, - "height": 3633 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64111, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447498+00:00", - "fileLastModified": "2025-07-14T09:21:52.447498+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474981+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474978+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 196 - }, - "imageDetail": { - "width": 536, - "height": 9080 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 26192, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4474984+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474985+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474982+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 197 - }, - "imageDetail": { - "width": 2105, - "height": 9462 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79984, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4474988+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474988+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474989+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4474986+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 198 - }, - "imageDetail": { - "width": 5570, - "height": 9155 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 84247, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4474992+00:00", - "fileLastModified": "2025-07-14T09:21:52.4474992+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4474992+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447499+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 199 - }, - "imageDetail": { - "width": 5283, - "height": 8368 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86621, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475023+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475024+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475024+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475022+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 200 - }, - "imageDetail": { - "width": 1462, - "height": 6690 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 74834, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475027+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475028+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475028+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475026+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 201 - }, - "imageDetail": { - "width": 1730, - "height": 6550 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 63692, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475031+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475032+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447503+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 202 - }, - "imageDetail": { - "width": 9846, - "height": 4844 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58147, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475035+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475036+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475036+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475034+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 203 - }, - "imageDetail": { - "width": 6080, - "height": 2382 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 68715, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475039+00:00", - "fileLastModified": "2025-07-14T09:21:52.447504+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447504+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475038+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 204 - }, - "imageDetail": { - "width": 4815, - "height": 3029 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 26560, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475043+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475044+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475042+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 205 - }, - "imageDetail": { - "width": 8325, - "height": 3757 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 21352, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475047+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475047+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475048+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475045+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 206 - }, - "imageDetail": { - "width": 1178, - "height": 9360 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 52599, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475051+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475051+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475052+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475049+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 207 - }, - "imageDetail": { - "width": 2286, - "height": 8671 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98541, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475055+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475055+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475056+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475053+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 208 - }, - "imageDetail": { - "width": 3279, - "height": 7457 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 45175, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475059+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475059+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447506+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475057+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 209 - }, - "imageDetail": { - "width": 1670, - "height": 3925 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 54274, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475062+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475063+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475061+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 210 - }, - "imageDetail": { - "width": 569, - "height": 3308 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 36233, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475066+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475066+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475067+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475064+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 211 - }, - "imageDetail": { - "width": 1553, - "height": 3888 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 31965, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447507+00:00", - "fileLastModified": "2025-07-14T09:21:52.447507+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475068+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 212 - }, - "imageDetail": { - "width": 632, - "height": 7251 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63725, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475073+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475074+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475074+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475072+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 213 - }, - "imageDetail": { - "width": 3480, - "height": 8316 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33172, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475101+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475101+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475099+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 214 - }, - "imageDetail": { - "width": 9522, - "height": 7511 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28437, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475104+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475105+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475102+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 215 - }, - "imageDetail": { - "width": 1654, - "height": 9289 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 45241, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475108+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475108+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475108+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475106+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 216 - }, - "imageDetail": { - "width": 2550, - "height": 2963 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48793, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475112+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475112+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447511+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 217 - }, - "imageDetail": { - "width": 8596, - "height": 8969 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 48472, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475115+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475116+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475116+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475113+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 218 - }, - "imageDetail": { - "width": 8880, - "height": 3629 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80187, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475119+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475119+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447512+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475117+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 219 - }, - "imageDetail": { - "width": 6664, - "height": 7072 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34845, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475123+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475123+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475124+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475121+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 220 - }, - "imageDetail": { - "width": 4502, - "height": 8397 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32303, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475127+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475127+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475127+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475125+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 221 - }, - "imageDetail": { - "width": 6388, - "height": 5316 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 81904, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447513+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475131+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475131+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475129+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 222 - }, - "imageDetail": { - "width": 4506, - "height": 5528 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70004, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475134+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475135+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475135+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475133+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 223 - }, - "imageDetail": { - "width": 429, - "height": 3541 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73278, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475138+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475138+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475137+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 224 - }, - "imageDetail": { - "width": 9563, - "height": 9120 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 93535, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475141+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475142+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447514+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 225 - }, - "imageDetail": { - "width": 693, - "height": 4650 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 20024, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475145+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475145+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475146+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475143+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 226 - }, - "imageDetail": { - "width": 7787, - "height": 6020 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47472, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475176+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475176+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475177+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475147+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 227 - }, - "imageDetail": { - "width": 3611, - "height": 3008 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72507, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475179+00:00", - "fileLastModified": "2025-07-14T09:21:52.447518+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447518+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475178+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 228 - }, - "imageDetail": { - "width": 2593, - "height": 6899 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66156, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475183+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475184+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475184+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475182+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 229 - }, - "imageDetail": { - "width": 4782, - "height": 8371 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 41331, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475187+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475188+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475186+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 230 - }, - "imageDetail": { - "width": 7964, - "height": 4149 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 82017, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475191+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475192+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475192+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447519+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 231 - }, - "imageDetail": { - "width": 5214, - "height": 4790 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 42940, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475195+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475195+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475193+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 232 - }, - "imageDetail": { - "width": 6185, - "height": 2337 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 20649, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475198+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475199+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475199+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475197+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 233 - }, - "imageDetail": { - "width": 1415, - "height": 5157 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72921, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475202+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475202+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475203+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475201+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 234 - }, - "imageDetail": { - "width": 1012, - "height": 9035 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60651, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475206+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475207+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475204+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 235 - }, - "imageDetail": { - "width": 220, - "height": 8037 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 97913, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447521+00:00", - "fileLastModified": "2025-07-14T09:21:52.447521+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475211+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475208+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 236 - }, - "imageDetail": { - "width": 3653, - "height": 6073 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47714, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475214+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475214+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475215+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475212+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 237 - }, - "imageDetail": { - "width": 9040, - "height": 2634 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 61287, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475218+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475218+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475219+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475216+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 238 - }, - "imageDetail": { - "width": 6061, - "height": 2215 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 74058, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475221+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475222+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475223+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447522+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 239 - }, - "imageDetail": { - "width": 4605, - "height": 2866 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96321, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475225+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475226+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475224+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 240 - }, - "imageDetail": { - "width": 9273, - "height": 8339 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 85485, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475244+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475245+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475246+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475243+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 241 - }, - "imageDetail": { - "width": 1221, - "height": 2359 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 65931, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475249+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475249+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447525+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475247+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 242 - }, - "imageDetail": { - "width": 2734, - "height": 6140 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 38986, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475253+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475253+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475254+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475251+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 243 - }, - "imageDetail": { - "width": 2171, - "height": 4685 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 93165, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475257+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475258+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475255+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 244 - }, - "imageDetail": { - "width": 8173, - "height": 9916 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57497, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475261+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475261+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475259+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 245 - }, - "imageDetail": { - "width": 5561, - "height": 5485 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 42468, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475264+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475265+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475263+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 246 - }, - "imageDetail": { - "width": 8322, - "height": 5603 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65204, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475268+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475268+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475266+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 247 - }, - "imageDetail": { - "width": 5746, - "height": 8737 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 57189, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475271+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475272+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447527+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 248 - }, - "imageDetail": { - "width": 9117, - "height": 6034 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 96647, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475275+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475275+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475276+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475273+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 249 - }, - "imageDetail": { - "width": 7487, - "height": 5122 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 49712, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475279+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475279+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475277+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 250 - }, - "imageDetail": { - "width": 7447, - "height": 6079 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 80639, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475282+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475283+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475281+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 251 - }, - "imageDetail": { - "width": 5501, - "height": 2369 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24853, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475286+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475286+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 252 - }, - "imageDetail": { - "width": 2427, - "height": 8515 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69729, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475289+00:00", - "fileLastModified": "2025-07-14T09:21:52.447529+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447529+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475288+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 253 - }, - "imageDetail": { - "width": 1377, - "height": 2102 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 91445, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475331+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475331+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475328+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 254 - }, - "imageDetail": { - "width": 9998, - "height": 6009 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85862, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475335+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475335+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475336+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475333+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 255 - }, - "imageDetail": { - "width": 2889, - "height": 7167 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34187, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475339+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475339+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447534+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475337+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 256 - }, - "imageDetail": { - "width": 3920, - "height": 3903 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 56212, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475343+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475343+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475344+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475341+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 257 - }, - "imageDetail": { - "width": 1437, - "height": 9421 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 64926, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475346+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475347+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475345+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 258 - }, - "imageDetail": { - "width": 1350, - "height": 6382 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 51773, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475354+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475354+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475352+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 259 - }, - "imageDetail": { - "width": 6954, - "height": 9688 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 73196, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475358+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475358+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475356+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 260 - }, - "imageDetail": { - "width": 3793, - "height": 2434 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 49639, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475395+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475396+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475397+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475394+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 261 - }, - "imageDetail": { - "width": 5201, - "height": 5044 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 20463, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.44754+00:00", - "fileLastModified": "2025-07-14T09:21:52.44754+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475398+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 262 - }, - "imageDetail": { - "width": 9362, - "height": 8982 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67518, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475403+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475403+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475401+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 263 - }, - "imageDetail": { - "width": 526, - "height": 3502 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95619, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475406+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475407+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475407+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475405+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 264 - }, - "imageDetail": { - "width": 3164, - "height": 2961 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 67656, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475411+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475411+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475412+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475409+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 265 - }, - "imageDetail": { - "width": 8068, - "height": 5814 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 75629, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475415+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475415+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475416+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475413+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 266 - }, - "imageDetail": { - "width": 8822, - "height": 7269 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70839, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475418+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475419+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475417+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 267 - }, - "imageDetail": { - "width": 1580, - "height": 3743 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 51013, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475422+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475423+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475423+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475421+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 268 - }, - "imageDetail": { - "width": 9509, - "height": 9233 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44235, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475426+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475427+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475425+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 269 - }, - "imageDetail": { - "width": 2241, - "height": 7131 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 50474, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447543+00:00", - "fileLastModified": "2025-07-14T09:21:52.447543+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475431+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475428+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 270 - }, - "imageDetail": { - "width": 8014, - "height": 8597 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34264, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475433+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475434+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475434+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475432+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 271 - }, - "imageDetail": { - "width": 1971, - "height": 2146 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83126, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475437+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475438+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475439+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475436+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 272 - }, - "imageDetail": { - "width": 1126, - "height": 9341 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 94919, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475441+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475442+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475442+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447544+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 273 - }, - "imageDetail": { - "width": 3059, - "height": 8244 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 32840, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475445+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475446+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475444+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 274 - }, - "imageDetail": { - "width": 478, - "height": 8204 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 30913, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475475+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475475+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475473+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 275 - }, - "imageDetail": { - "width": 7336, - "height": 2027 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 39343, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475478+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475479+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475477+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 276 - }, - "imageDetail": { - "width": 8762, - "height": 8770 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82655, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475482+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475483+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475483+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447548+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 277 - }, - "imageDetail": { - "width": 605, - "height": 4449 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 31460, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475486+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475486+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475485+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 278 - }, - "imageDetail": { - "width": 2723, - "height": 5609 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41781, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475489+00:00", - "fileLastModified": "2025-07-14T09:21:52.447549+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475488+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 279 - }, - "imageDetail": { - "width": 4323, - "height": 9707 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37471, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475493+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475493+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475494+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475491+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 280 - }, - "imageDetail": { - "width": 4869, - "height": 3417 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 25126, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475497+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475497+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475495+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 281 - }, - "imageDetail": { - "width": 1944, - "height": 2716 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79738, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.44755+00:00", - "fileLastModified": "2025-07-14T09:21:52.44755+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475501+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475498+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 282 - }, - "imageDetail": { - "width": 591, - "height": 9388 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66788, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475504+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475504+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475505+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475502+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 283 - }, - "imageDetail": { - "width": 5388, - "height": 6777 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 40524, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475508+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475508+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475506+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 284 - }, - "imageDetail": { - "width": 7657, - "height": 7964 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 90850, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475511+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475512+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447551+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 285 - }, - "imageDetail": { - "width": 6771, - "height": 2381 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 75595, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475515+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475516+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475516+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475513+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 286 - }, - "imageDetail": { - "width": 5024, - "height": 7266 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67733, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475519+00:00", - "fileLastModified": "2025-07-14T09:21:52.447552+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475517+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 287 - }, - "imageDetail": { - "width": 9833, - "height": 7307 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69040, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475545+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475546+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475521+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 288 - }, - "imageDetail": { - "width": 396, - "height": 4385 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47366, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475549+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475549+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447555+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475547+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 289 - }, - "imageDetail": { - "width": 2513, - "height": 2486 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 70087, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475552+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475553+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475551+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 290 - }, - "imageDetail": { - "width": 3425, - "height": 8276 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23868, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475556+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475556+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475557+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475554+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 291 - }, - "imageDetail": { - "width": 3894, - "height": 5856 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 25885, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447556+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475561+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475559+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 292 - }, - "imageDetail": { - "width": 4415, - "height": 5626 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37586, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475563+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475564+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475565+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475562+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 293 - }, - "imageDetail": { - "width": 1581, - "height": 9099 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86844, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475567+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475568+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475568+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475566+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 294 - }, - "imageDetail": { - "width": 5116, - "height": 4034 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 48682, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475571+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475572+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475572+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447557+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 295 - }, - "imageDetail": { - "width": 5683, - "height": 2269 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 86461, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475575+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475576+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475574+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 296 - }, - "imageDetail": { - "width": 270, - "height": 5441 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 98857, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475578+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475579+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475577+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 297 - }, - "imageDetail": { - "width": 4515, - "height": 2907 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 29834, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475582+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475583+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475581+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 298 - }, - "imageDetail": { - "width": 5633, - "height": 9152 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28663, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475586+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475586+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475587+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475584+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 299 - }, - "imageDetail": { - "width": 7950, - "height": 3877 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 20998, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475589+00:00", - "fileLastModified": "2025-07-14T09:21:52.447559+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447559+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475588+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 300 - }, - "imageDetail": { - "width": 9935, - "height": 8651 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 70579, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475593+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475594+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475594+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475592+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 301 - }, - "imageDetail": { - "width": 3956, - "height": 6000 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 40588, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475692+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475693+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475693+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475689+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 302 - }, - "imageDetail": { - "width": 3133, - "height": 7770 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 26274, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475696+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475697+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475695+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 303 - }, - "imageDetail": { - "width": 6487, - "height": 3939 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43205, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.44757+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475701+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475698+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 304 - }, - "imageDetail": { - "width": 4138, - "height": 9932 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37287, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475704+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475704+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475705+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475702+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 305 - }, - "imageDetail": { - "width": 1050, - "height": 4111 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88999, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475708+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475708+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475706+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 306 - }, - "imageDetail": { - "width": 933, - "height": 5198 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 99318, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475711+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475712+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475713+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447571+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 307 - }, - "imageDetail": { - "width": 2067, - "height": 9137 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37451, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475715+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475716+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475716+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475714+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 308 - }, - "imageDetail": { - "width": 1595, - "height": 8614 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 85437, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447572+00:00", - "fileLastModified": "2025-07-14T09:21:52.447572+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475718+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 309 - }, - "imageDetail": { - "width": 6905, - "height": 3016 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 96471, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475723+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475724+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475722+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 310 - }, - "imageDetail": { - "width": 1005, - "height": 5265 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88533, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475727+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475727+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475728+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475725+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 311 - }, - "imageDetail": { - "width": 9317, - "height": 6641 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23624, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475731+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475731+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475729+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 312 - }, - "imageDetail": { - "width": 1715, - "height": 2409 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 62139, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475734+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475735+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475733+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 313 - }, - "imageDetail": { - "width": 6154, - "height": 6422 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 58979, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475738+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475738+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475739+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475736+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 314 - }, - "imageDetail": { - "width": 5826, - "height": 2499 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61117, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475742+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475743+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475743+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475741+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 315 - }, - "imageDetail": { - "width": 944, - "height": 8357 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 68920, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475772+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475773+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475773+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475771+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 316 - }, - "imageDetail": { - "width": 8881, - "height": 3123 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67289, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475776+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475777+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475774+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 317 - }, - "imageDetail": { - "width": 7404, - "height": 5906 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61803, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447578+00:00", - "fileLastModified": "2025-07-14T09:21:52.447578+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475778+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 318 - }, - "imageDetail": { - "width": 7765, - "height": 2560 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68103, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475783+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475784+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475781+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 319 - }, - "imageDetail": { - "width": 7909, - "height": 5800 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 49350, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475786+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475787+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475787+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475785+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 320 - }, - "imageDetail": { - "width": 2449, - "height": 6441 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 57170, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447579+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475791+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475791+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475789+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 321 - }, - "imageDetail": { - "width": 1999, - "height": 6424 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48580, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475794+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475795+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475793+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 322 - }, - "imageDetail": { - "width": 680, - "height": 3539 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 79909, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475798+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475798+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475799+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475796+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 323 - }, - "imageDetail": { - "width": 2200, - "height": 9921 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 40982, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475802+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475802+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.44758+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 324 - }, - "imageDetail": { - "width": 2347, - "height": 9454 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 69043, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475805+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475806+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475807+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475804+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 325 - }, - "imageDetail": { - "width": 9372, - "height": 3843 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 47407, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475809+00:00", - "fileLastModified": "2025-07-14T09:21:52.447581+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475808+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 326 - }, - "imageDetail": { - "width": 8948, - "height": 2476 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 55337, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475813+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475813+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475811+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 327 - }, - "imageDetail": { - "width": 3561, - "height": 8749 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 63198, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475816+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475817+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475817+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475815+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 328 - }, - "imageDetail": { - "width": 5005, - "height": 7872 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35109, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475845+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475845+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475846+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475819+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 329 - }, - "imageDetail": { - "width": 7550, - "height": 3678 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 42853, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475849+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475849+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475847+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 330 - }, - "imageDetail": { - "width": 8175, - "height": 6712 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 20948, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475852+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475853+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475851+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 331 - }, - "imageDetail": { - "width": 1236, - "height": 5328 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 39051, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475856+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475856+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475857+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475854+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 332 - }, - "imageDetail": { - "width": 5470, - "height": 4126 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41234, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447586+00:00", - "fileLastModified": "2025-07-14T09:21:52.447586+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475858+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 333 - }, - "imageDetail": { - "width": 8720, - "height": 3858 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90653, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475863+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475864+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475864+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475862+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 334 - }, - "imageDetail": { - "width": 2397, - "height": 6999 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27666, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475867+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475868+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475868+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475866+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 335 - }, - "imageDetail": { - "width": 4097, - "height": 4900 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 20237, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475872+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475872+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475873+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447587+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 336 - }, - "imageDetail": { - "width": 7443, - "height": 8524 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 64508, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475875+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475876+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475874+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 337 - }, - "imageDetail": { - "width": 1533, - "height": 2797 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 99360, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475879+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475879+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447588+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475877+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 338 - }, - "imageDetail": { - "width": 3954, - "height": 4736 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65974, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475883+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475883+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475884+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475881+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 339 - }, - "imageDetail": { - "width": 3703, - "height": 5714 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65300, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475887+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475887+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475885+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 340 - }, - "imageDetail": { - "width": 7494, - "height": 5061 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87378, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475891+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475891+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475889+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 341 - }, - "imageDetail": { - "width": 1908, - "height": 3891 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26756, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475894+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475895+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475893+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 342 - }, - "imageDetail": { - "width": 1021, - "height": 4789 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 93478, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475915+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475915+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475913+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 343 - }, - "imageDetail": { - "width": 5471, - "height": 6995 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87191, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475918+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475919+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475916+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 344 - }, - "imageDetail": { - "width": 2582, - "height": 2211 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 32967, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475922+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475922+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475923+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447592+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 345 - }, - "imageDetail": { - "width": 1466, - "height": 3104 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 41890, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4475926+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475926+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475927+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475924+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 346 - }, - "imageDetail": { - "width": 8659, - "height": 5219 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 45432, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447593+00:00", - "fileLastModified": "2025-07-14T09:21:52.447593+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475931+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475928+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 347 - }, - "imageDetail": { - "width": 4827, - "height": 6399 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 66516, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475933+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475934+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475932+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 348 - }, - "imageDetail": { - "width": 4134, - "height": 9564 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82517, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475937+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475938+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475936+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 349 - }, - "imageDetail": { - "width": 6261, - "height": 2321 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 30395, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447594+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475941+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475939+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 350 - }, - "imageDetail": { - "width": 5775, - "height": 3687 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 85008, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4475944+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475944+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475942+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 351 - }, - "imageDetail": { - "width": 8148, - "height": 5439 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 85450, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475948+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475948+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4475949+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475946+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 352 - }, - "imageDetail": { - "width": 129, - "height": 4014 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 49977, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4475952+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475953+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447595+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 353 - }, - "imageDetail": { - "width": 8814, - "height": 2190 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 47408, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4475956+00:00", - "fileLastModified": "2025-07-14T09:21:52.4475956+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475954+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 354 - }, - "imageDetail": { - "width": 3811, - "height": 9276 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 25942, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4475959+00:00", - "fileLastModified": "2025-07-14T09:21:52.447596+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447596+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4475958+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 355 - }, - "imageDetail": { - "width": 9528, - "height": 6341 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 28431, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476002+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476002+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 356 - }, - "imageDetail": { - "width": 3009, - "height": 3697 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 23711, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476006+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476006+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476007+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476004+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 357 - }, - "imageDetail": { - "width": 9647, - "height": 9855 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 66004, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447601+00:00", - "fileLastModified": "2025-07-14T09:21:52.447601+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476008+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 358 - }, - "imageDetail": { - "width": 6450, - "height": 4746 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60307, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476013+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476014+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476012+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 359 - }, - "imageDetail": { - "width": 4206, - "height": 4608 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 30918, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476017+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476018+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476018+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476015+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 360 - }, - "imageDetail": { - "width": 8287, - "height": 7445 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58024, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476021+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476022+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476019+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 361 - }, - "imageDetail": { - "width": 1724, - "height": 8967 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 25826, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476024+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476025+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476023+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 362 - }, - "imageDetail": { - "width": 4874, - "height": 9540 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47895, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476028+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476028+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476029+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476026+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 363 - }, - "imageDetail": { - "width": 4798, - "height": 5921 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31582, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476032+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476033+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447603+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 364 - }, - "imageDetail": { - "width": 8745, - "height": 8476 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 79510, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476036+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476036+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476034+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 365 - }, - "imageDetail": { - "width": 6245, - "height": 5860 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 90389, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476039+00:00", - "fileLastModified": "2025-07-14T09:21:52.447604+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476038+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 366 - }, - "imageDetail": { - "width": 1210, - "height": 4041 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33527, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476043+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476043+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476041+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 367 - }, - "imageDetail": { - "width": 7236, - "height": 8227 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 62084, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476047+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476047+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476048+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476045+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 368 - }, - "imageDetail": { - "width": 727, - "height": 5493 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 42780, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476051+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476051+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476052+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476049+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 369 - }, - "imageDetail": { - "width": 4862, - "height": 2378 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37482, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447609+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476091+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476089+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 370 - }, - "imageDetail": { - "width": 3161, - "height": 2615 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 70546, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476094+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476095+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476095+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476092+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 371 - }, - "imageDetail": { - "width": 9772, - "height": 3466 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 20205, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476098+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476099+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476096+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 372 - }, - "imageDetail": { - "width": 7227, - "height": 6994 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37372, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476102+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476102+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.44761+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 373 - }, - "imageDetail": { - "width": 9815, - "height": 9675 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96798, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476105+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476106+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476104+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 374 - }, - "imageDetail": { - "width": 6144, - "height": 6814 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63625, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476109+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476109+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476107+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 375 - }, - "imageDetail": { - "width": 2829, - "height": 9892 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 38688, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476112+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476113+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476113+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476111+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 376 - }, - "imageDetail": { - "width": 928, - "height": 4404 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31336, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476116+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476117+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476117+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476115+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 377 - }, - "imageDetail": { - "width": 3143, - "height": 4217 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 52139, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447612+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476121+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476119+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 378 - }, - "imageDetail": { - "width": 280, - "height": 2142 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 20311, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476124+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476124+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476122+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 379 - }, - "imageDetail": { - "width": 4603, - "height": 3485 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 68865, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476127+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476128+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476128+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476126+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 380 - }, - "imageDetail": { - "width": 9008, - "height": 9175 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 38349, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476131+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476132+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476129+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 381 - }, - "imageDetail": { - "width": 8776, - "height": 5136 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98519, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476135+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476135+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476136+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476133+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 382 - }, - "imageDetail": { - "width": 4503, - "height": 2703 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82420, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476139+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476139+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447614+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476137+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 383 - }, - "imageDetail": { - "width": 8043, - "height": 2123 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86621, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476167+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476168+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476168+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476166+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 384 - }, - "imageDetail": { - "width": 7231, - "height": 7458 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90358, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476171+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476172+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447617+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 385 - }, - "imageDetail": { - "width": 1641, - "height": 2285 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 81129, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476175+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476175+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476173+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 386 - }, - "imageDetail": { - "width": 182, - "height": 3852 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31883, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476178+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476179+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476179+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476176+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 387 - }, - "imageDetail": { - "width": 4451, - "height": 3802 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46682, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476182+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476183+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476184+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476181+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 388 - }, - "imageDetail": { - "width": 1163, - "height": 6407 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 86880, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476186+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476187+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476185+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 389 - }, - "imageDetail": { - "width": 6219, - "height": 8892 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23134, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447619+00:00", - "fileLastModified": "2025-07-14T09:21:52.447619+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476188+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 390 - }, - "imageDetail": { - "width": 1536, - "height": 8472 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 90944, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476193+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476194+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476194+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476192+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 391 - }, - "imageDetail": { - "width": 9734, - "height": 8999 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 85170, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476197+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476198+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476196+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 392 - }, - "imageDetail": { - "width": 9450, - "height": 5631 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 21800, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476201+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476201+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476202+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476199+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 393 - }, - "imageDetail": { - "width": 3489, - "height": 4585 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74448, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476205+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476205+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476203+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 394 - }, - "imageDetail": { - "width": 8287, - "height": 2936 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31063, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476208+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476209+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476207+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 395 - }, - "imageDetail": { - "width": 8674, - "height": 9408 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64361, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476212+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476212+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447621+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 396 - }, - "imageDetail": { - "width": 9002, - "height": 4543 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 73928, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476245+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476246+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476244+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 397 - }, - "imageDetail": { - "width": 1254, - "height": 2451 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 62238, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476249+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476249+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447625+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476247+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 398 - }, - "imageDetail": { - "width": 1046, - "height": 5322 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 88597, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476253+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476253+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476251+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 399 - }, - "imageDetail": { - "width": 6664, - "height": 8400 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 93585, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476256+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476257+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476255+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 400 - }, - "imageDetail": { - "width": 8609, - "height": 9681 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 80101, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447626+00:00", - "fileLastModified": "2025-07-14T09:21:52.447626+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476258+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 401 - }, - "imageDetail": { - "width": 2373, - "height": 5404 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33523, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476263+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476263+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476264+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476261+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 402 - }, - "imageDetail": { - "width": 2240, - "height": 3805 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 20033, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476267+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476267+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476268+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476265+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 403 - }, - "imageDetail": { - "width": 4693, - "height": 8449 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44165, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476271+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476271+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476272+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476269+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 404 - }, - "imageDetail": { - "width": 9809, - "height": 7613 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27905, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476275+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476276+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476273+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 405 - }, - "imageDetail": { - "width": 5322, - "height": 4859 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64420, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476279+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476279+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476277+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 406 - }, - "imageDetail": { - "width": 5143, - "height": 4546 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 40118, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476282+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476283+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476281+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 407 - }, - "imageDetail": { - "width": 6904, - "height": 3620 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 36158, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476285+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476286+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476286+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 408 - }, - "imageDetail": { - "width": 6889, - "height": 2910 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 58640, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476289+00:00", - "fileLastModified": "2025-07-14T09:21:52.447629+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447629+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476288+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 409 - }, - "imageDetail": { - "width": 7689, - "height": 3495 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 38919, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476293+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476294+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476294+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476292+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 410 - }, - "imageDetail": { - "width": 7991, - "height": 2970 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 67564, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476323+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476324+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476322+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 411 - }, - "imageDetail": { - "width": 1128, - "height": 8878 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76910, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476327+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476328+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476328+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476326+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 412 - }, - "imageDetail": { - "width": 2726, - "height": 7026 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35610, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476331+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476332+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447633+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 413 - }, - "imageDetail": { - "width": 537, - "height": 7164 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 40716, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476335+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476335+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476336+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476333+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 414 - }, - "imageDetail": { - "width": 3434, - "height": 9684 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47506, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476339+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476339+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447634+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476337+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 415 - }, - "imageDetail": { - "width": 2481, - "height": 8956 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 97933, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476343+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476343+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476341+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 416 - }, - "imageDetail": { - "width": 6289, - "height": 7356 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65722, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476346+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476347+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476345+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 417 - }, - "imageDetail": { - "width": 5927, - "height": 8938 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 32665, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447635+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476351+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476348+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 418 - }, - "imageDetail": { - "width": 5466, - "height": 4407 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 22058, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476354+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476354+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476355+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476352+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 419 - }, - "imageDetail": { - "width": 7025, - "height": 7962 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37507, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476358+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476358+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476356+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 420 - }, - "imageDetail": { - "width": 9928, - "height": 3951 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 20456, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476361+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476362+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447636+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 421 - }, - "imageDetail": { - "width": 6019, - "height": 7197 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61265, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476364+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476365+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476365+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476363+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 422 - }, - "imageDetail": { - "width": 9337, - "height": 5562 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 26086, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476368+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476369+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476367+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 423 - }, - "imageDetail": { - "width": 2461, - "height": 2208 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 63792, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476372+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476372+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447637+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 424 - }, - "imageDetail": { - "width": 2841, - "height": 9195 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24382, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476399+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476399+00:00", - "fileLastViewed": "2025-07-14T09:21:52.44764+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476397+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 425 - }, - "imageDetail": { - "width": 4412, - "height": 5284 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 93533, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476403+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476403+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476401+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 426 - }, - "imageDetail": { - "width": 6930, - "height": 3544 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 81388, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476406+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476407+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476407+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476405+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 427 - }, - "imageDetail": { - "width": 2049, - "height": 3571 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 39407, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447641+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476411+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476411+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476409+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 428 - }, - "imageDetail": { - "width": 4332, - "height": 3877 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 74144, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476414+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476415+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476413+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 429 - }, - "imageDetail": { - "width": 3315, - "height": 4892 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 91810, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476418+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476418+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476419+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476416+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 430 - }, - "imageDetail": { - "width": 8970, - "height": 3931 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 24515, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476422+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476422+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476423+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447642+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 431 - }, - "imageDetail": { - "width": 8287, - "height": 9755 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 57571, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476425+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476426+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476426+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476424+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 432 - }, - "imageDetail": { - "width": 6159, - "height": 6580 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64906, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476429+00:00", - "fileLastModified": "2025-07-14T09:21:52.447643+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476428+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 433 - }, - "imageDetail": { - "width": 5098, - "height": 6362 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59554, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476433+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476433+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476431+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 434 - }, - "imageDetail": { - "width": 4502, - "height": 5761 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 56269, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476436+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476437+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476435+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 435 - }, - "imageDetail": { - "width": 9040, - "height": 7514 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 74555, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447644+00:00", - "fileLastModified": "2025-07-14T09:21:52.447644+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476441+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476438+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 436 - }, - "imageDetail": { - "width": 2639, - "height": 6709 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57056, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476444+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476444+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476442+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 437 - }, - "imageDetail": { - "width": 334, - "height": 9858 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 64328, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476471+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476471+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476469+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 438 - }, - "imageDetail": { - "width": 7498, - "height": 5317 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 35398, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476475+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476475+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476473+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 439 - }, - "imageDetail": { - "width": 3463, - "height": 8477 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59695, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476478+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476478+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476476+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 440 - }, - "imageDetail": { - "width": 4573, - "height": 3507 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58348, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476481+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476482+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476482+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447648+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 441 - }, - "imageDetail": { - "width": 4843, - "height": 3330 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 39875, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476485+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476486+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476484+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 442 - }, - "imageDetail": { - "width": 9660, - "height": 6247 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31045, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476489+00:00", - "fileLastModified": "2025-07-14T09:21:52.447649+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447649+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476488+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 443 - }, - "imageDetail": { - "width": 5782, - "height": 9862 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 38083, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476493+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476494+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476494+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476492+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 444 - }, - "imageDetail": { - "width": 3023, - "height": 4483 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46897, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476497+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476498+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476496+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 445 - }, - "imageDetail": { - "width": 8057, - "height": 5510 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 45865, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476501+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476501+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476502+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476499+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 446 - }, - "imageDetail": { - "width": 3969, - "height": 7459 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35250, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476505+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476505+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476503+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 447 - }, - "imageDetail": { - "width": 8129, - "height": 8927 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 35699, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476508+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476509+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476509+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476507+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 448 - }, - "imageDetail": { - "width": 7203, - "height": 8100 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 80520, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476512+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476512+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476513+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447651+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 449 - }, - "imageDetail": { - "width": 4809, - "height": 2781 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 98658, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476516+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476516+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476514+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 450 - }, - "imageDetail": { - "width": 7323, - "height": 3607 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 55461, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476519+00:00", - "fileLastModified": "2025-07-14T09:21:52.447652+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476518+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 451 - }, - "imageDetail": { - "width": 1055, - "height": 7088 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55722, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476539+00:00", - "fileLastModified": "2025-07-14T09:21:52.447654+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447654+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476538+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 452 - }, - "imageDetail": { - "width": 7904, - "height": 3040 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 59339, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476543+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476544+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476542+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 453 - }, - "imageDetail": { - "width": 6032, - "height": 5337 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46807, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476547+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476547+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476545+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 454 - }, - "imageDetail": { - "width": 7094, - "height": 2798 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65696, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476551+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476551+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476552+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476549+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 455 - }, - "imageDetail": { - "width": 7435, - "height": 3009 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46728, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476555+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476555+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476556+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476553+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 456 - }, - "imageDetail": { - "width": 9051, - "height": 7694 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 35357, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476559+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476559+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476557+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 457 - }, - "imageDetail": { - "width": 9149, - "height": 6740 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76128, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476562+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476563+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476563+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447656+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 458 - }, - "imageDetail": { - "width": 6104, - "height": 9686 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67159, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476566+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476566+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476564+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 459 - }, - "imageDetail": { - "width": 7248, - "height": 5398 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59501, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447657+00:00", - "fileLastModified": "2025-07-14T09:21:52.447657+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476568+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 460 - }, - "imageDetail": { - "width": 7643, - "height": 4927 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 89570, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476573+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476574+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476572+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 461 - }, - "imageDetail": { - "width": 2124, - "height": 6707 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86952, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476577+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476577+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476575+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 462 - }, - "imageDetail": { - "width": 7358, - "height": 4229 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 92482, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447658+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476581+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476579+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 463 - }, - "imageDetail": { - "width": 3925, - "height": 7076 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24332, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476584+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476584+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476585+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476582+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 464 - }, - "imageDetail": { - "width": 7718, - "height": 2506 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80302, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476625+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476626+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476624+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 465 - }, - "imageDetail": { - "width": 2764, - "height": 3984 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 29408, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476629+00:00", - "fileLastModified": "2025-07-14T09:21:52.447663+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476628+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 466 - }, - "imageDetail": { - "width": 6231, - "height": 2311 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 49930, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476633+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476633+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476634+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476631+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 467 - }, - "imageDetail": { - "width": 6378, - "height": 8703 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 75981, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476637+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476637+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476635+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 468 - }, - "imageDetail": { - "width": 3308, - "height": 4850 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92048, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447664+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476641+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476641+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476639+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 469 - }, - "imageDetail": { - "width": 1023, - "height": 8008 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 99062, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476644+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476645+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476643+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 470 - }, - "imageDetail": { - "width": 1901, - "height": 8386 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 54674, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476648+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476648+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476649+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476646+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 471 - }, - "imageDetail": { - "width": 9198, - "height": 9704 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53027, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476652+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476652+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447665+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 472 - }, - "imageDetail": { - "width": 8714, - "height": 4685 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 76388, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476655+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476656+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476656+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476654+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 473 - }, - "imageDetail": { - "width": 4495, - "height": 9895 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73196, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476659+00:00", - "fileLastModified": "2025-07-14T09:21:52.447666+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447666+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476658+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 474 - }, - "imageDetail": { - "width": 859, - "height": 2357 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 71204, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476663+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476664+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476662+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 475 - }, - "imageDetail": { - "width": 3715, - "height": 5765 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 43668, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476667+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476667+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476665+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 476 - }, - "imageDetail": { - "width": 8500, - "height": 2179 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 49774, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447667+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476671+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476669+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 477 - }, - "imageDetail": { - "width": 7995, - "height": 5121 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 51934, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476674+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476675+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476673+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 478 - }, - "imageDetail": { - "width": 8228, - "height": 5255 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97134, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447677+00:00", - "fileLastModified": "2025-07-14T09:21:52.447677+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476771+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476767+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 479 - }, - "imageDetail": { - "width": 5532, - "height": 5237 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 50455, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476774+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476774+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476773+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 480 - }, - "imageDetail": { - "width": 759, - "height": 4341 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 56370, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476777+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476778+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476778+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476776+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 481 - }, - "imageDetail": { - "width": 349, - "height": 3580 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 97729, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476782+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476782+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476782+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447678+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 482 - }, - "imageDetail": { - "width": 7774, - "height": 6457 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 62859, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476785+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476786+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476784+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 483 - }, - "imageDetail": { - "width": 5537, - "height": 2572 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 65012, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476789+00:00", - "fileLastModified": "2025-07-14T09:21:52.447679+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476788+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 484 - }, - "imageDetail": { - "width": 4191, - "height": 9752 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 20278, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476793+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476794+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476792+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 485 - }, - "imageDetail": { - "width": 302, - "height": 9344 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60423, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476797+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476797+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476795+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 486 - }, - "imageDetail": { - "width": 7831, - "height": 5318 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 91241, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.44768+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476801+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476801+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476799+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 487 - }, - "imageDetail": { - "width": 2239, - "height": 8784 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86442, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476804+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476805+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476803+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 488 - }, - "imageDetail": { - "width": 2070, - "height": 6980 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57817, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476808+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476808+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476809+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476806+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 489 - }, - "imageDetail": { - "width": 7167, - "height": 9165 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66895, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476812+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476812+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447681+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 490 - }, - "imageDetail": { - "width": 2342, - "height": 4238 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 55866, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476815+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476816+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476814+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 491 - }, - "imageDetail": { - "width": 1302, - "height": 5032 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23543, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476847+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476847+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476848+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476817+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 492 - }, - "imageDetail": { - "width": 8888, - "height": 9212 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 78468, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476851+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476852+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476849+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 493 - }, - "imageDetail": { - "width": 2880, - "height": 3814 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29088, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476855+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476855+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476856+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476853+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 494 - }, - "imageDetail": { - "width": 8444, - "height": 2338 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 99077, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476859+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476859+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447686+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476857+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 495 - }, - "imageDetail": { - "width": 4063, - "height": 9781 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 79793, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476863+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476863+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476864+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476861+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 496 - }, - "imageDetail": { - "width": 2131, - "height": 8662 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65747, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476866+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476867+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476867+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476865+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 497 - }, - "imageDetail": { - "width": 8073, - "height": 4105 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77056, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447687+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476871+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476869+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 498 - }, - "imageDetail": { - "width": 5406, - "height": 2521 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38343, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476874+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476874+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476875+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476872+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 499 - }, - "imageDetail": { - "width": 2440, - "height": 2561 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26052, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476878+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476878+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476879+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476876+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 500 - }, - "imageDetail": { - "width": 3718, - "height": 6330 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 63838, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476882+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476882+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447688+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 501 - }, - "imageDetail": { - "width": 7771, - "height": 6900 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53052, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476885+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476886+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476884+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 502 - }, - "imageDetail": { - "width": 4804, - "height": 8996 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80519, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476889+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476889+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447689+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476887+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 503 - }, - "imageDetail": { - "width": 8657, - "height": 7541 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61430, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476892+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476893+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476891+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 504 - }, - "imageDetail": { - "width": 7356, - "height": 3607 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 73479, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476896+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476897+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476895+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 505 - }, - "imageDetail": { - "width": 6520, - "height": 3031 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 81341, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476925+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476925+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476926+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476923+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 506 - }, - "imageDetail": { - "width": 8237, - "height": 7628 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 56730, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476929+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476929+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476927+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 507 - }, - "imageDetail": { - "width": 3632, - "height": 3054 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 45389, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476932+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476933+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476931+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 508 - }, - "imageDetail": { - "width": 8822, - "height": 8306 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 75112, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476936+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476936+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476934+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 509 - }, - "imageDetail": { - "width": 5079, - "height": 8708 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22358, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4476939+00:00", - "fileLastModified": "2025-07-14T09:21:52.447694+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447694+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476938+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 510 - }, - "imageDetail": { - "width": 8115, - "height": 6848 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 29690, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476943+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476943+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476941+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 511 - }, - "imageDetail": { - "width": 9101, - "height": 5287 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 93776, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4476946+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476947+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476947+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476945+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 512 - }, - "imageDetail": { - "width": 9267, - "height": 2183 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 43715, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476951+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476951+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476952+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476949+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 513 - }, - "imageDetail": { - "width": 5331, - "height": 9236 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23114, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476955+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476955+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476955+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476953+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 514 - }, - "imageDetail": { - "width": 2124, - "height": 2291 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 36396, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4476991+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476991+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476989+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 515 - }, - "imageDetail": { - "width": 5929, - "height": 6892 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 84069, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4476994+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476995+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476995+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476993+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 516 - }, - "imageDetail": { - "width": 1438, - "height": 5830 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59256, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4476998+00:00", - "fileLastModified": "2025-07-14T09:21:52.4476999+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4476999+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4476997+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 517 - }, - "imageDetail": { - "width": 692, - "height": 8781 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 48579, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477002+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477003+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477001+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 518 - }, - "imageDetail": { - "width": 7450, - "height": 5314 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 45320, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477005+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477006+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477007+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477004+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 519 - }, - "imageDetail": { - "width": 9592, - "height": 9445 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 85603, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477033+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477033+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477031+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 520 - }, - "imageDetail": { - "width": 2347, - "height": 6590 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 42823, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477037+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477037+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477037+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477035+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 521 - }, - "imageDetail": { - "width": 8203, - "height": 7610 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79906, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447704+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477041+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477041+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477039+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 522 - }, - "imageDetail": { - "width": 8691, - "height": 9846 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 41511, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477044+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477045+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477045+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477043+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 523 - }, - "imageDetail": { - "width": 953, - "height": 5603 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86812, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477048+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477048+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477049+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477046+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 524 - }, - "imageDetail": { - "width": 5936, - "height": 5145 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 99779, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477052+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477052+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447705+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 525 - }, - "imageDetail": { - "width": 2178, - "height": 6737 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 95178, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477055+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477056+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477056+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477054+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 526 - }, - "imageDetail": { - "width": 2770, - "height": 3251 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69205, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477059+00:00", - "fileLastModified": "2025-07-14T09:21:52.447706+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447706+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477058+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 527 - }, - "imageDetail": { - "width": 3770, - "height": 6447 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 57446, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477063+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477064+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477062+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 528 - }, - "imageDetail": { - "width": 9396, - "height": 4357 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 88052, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477067+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477067+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477067+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477065+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 529 - }, - "imageDetail": { - "width": 4037, - "height": 2707 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 43529, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447707+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477071+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477069+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 530 - }, - "imageDetail": { - "width": 9644, - "height": 5598 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 42034, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477074+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477074+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477075+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477072+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 531 - }, - "imageDetail": { - "width": 3219, - "height": 8946 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75399, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477078+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477078+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477078+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477076+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 532 - }, - "imageDetail": { - "width": 8678, - "height": 3693 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 45175, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477105+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477105+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447708+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 533 - }, - "imageDetail": { - "width": 7958, - "height": 6037 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 90107, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477108+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477109+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477109+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477107+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 534 - }, - "imageDetail": { - "width": 1256, - "height": 4232 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47265, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477112+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477113+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477111+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 535 - }, - "imageDetail": { - "width": 5017, - "height": 8960 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 67130, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477116+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477116+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477117+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477114+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 536 - }, - "imageDetail": { - "width": 9419, - "height": 9561 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 66367, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447712+00:00", - "fileLastModified": "2025-07-14T09:21:52.447712+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477118+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 537 - }, - "imageDetail": { - "width": 7173, - "height": 3590 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76409, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477124+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477124+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477122+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 538 - }, - "imageDetail": { - "width": 7264, - "height": 7529 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 64478, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477127+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477128+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477128+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477126+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 539 - }, - "imageDetail": { - "width": 4688, - "height": 7950 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 71580, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477131+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477132+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477132+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447713+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 540 - }, - "imageDetail": { - "width": 9021, - "height": 3258 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 30575, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477135+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477136+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477134+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 541 - }, - "imageDetail": { - "width": 4616, - "height": 7102 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 74635, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477139+00:00", - "fileLastModified": "2025-07-14T09:21:52.447714+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477138+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 542 - }, - "imageDetail": { - "width": 2988, - "height": 3720 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 50638, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477143+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477143+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477141+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 543 - }, - "imageDetail": { - "width": 360, - "height": 3827 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60355, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477146+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477147+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477147+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477145+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 544 - }, - "imageDetail": { - "width": 3364, - "height": 7391 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95129, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477151+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477151+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477151+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477149+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 545 - }, - "imageDetail": { - "width": 8246, - "height": 5221 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88858, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477154+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477155+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477155+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477153+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 546 - }, - "imageDetail": { - "width": 1110, - "height": 8407 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77756, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477174+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477175+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477175+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477172+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 547 - }, - "imageDetail": { - "width": 9509, - "height": 2400 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82375, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477178+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477179+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477179+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477177+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 548 - }, - "imageDetail": { - "width": 1998, - "height": 6683 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63955, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477182+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477183+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447718+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 549 - }, - "imageDetail": { - "width": 2117, - "height": 5820 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 83936, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477186+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477186+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477187+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477184+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 550 - }, - "imageDetail": { - "width": 9922, - "height": 5723 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 85455, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447719+00:00", - "fileLastModified": "2025-07-14T09:21:52.447719+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477191+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477188+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 551 - }, - "imageDetail": { - "width": 948, - "height": 2997 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 54259, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477193+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477194+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477192+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 552 - }, - "imageDetail": { - "width": 8589, - "height": 2861 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38405, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477197+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477198+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477198+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477196+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 553 - }, - "imageDetail": { - "width": 599, - "height": 4595 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 93207, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477201+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477202+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.44772+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 554 - }, - "imageDetail": { - "width": 8272, - "height": 5283 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41952, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477205+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477205+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477206+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477203+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 555 - }, - "imageDetail": { - "width": 7277, - "height": 7617 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58701, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477209+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477209+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477209+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477207+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 556 - }, - "imageDetail": { - "width": 6074, - "height": 3110 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 30268, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477212+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477213+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477211+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 557 - }, - "imageDetail": { - "width": 9669, - "height": 5451 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 32933, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477216+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477217+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477214+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 558 - }, - "imageDetail": { - "width": 2418, - "height": 6761 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50015, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447722+00:00", - "fileLastModified": "2025-07-14T09:21:52.447722+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477218+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 559 - }, - "imageDetail": { - "width": 5651, - "height": 7051 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61081, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477258+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477259+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477259+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477221+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 560 - }, - "imageDetail": { - "width": 6650, - "height": 5073 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 20676, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477262+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477263+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477263+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477261+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 561 - }, - "imageDetail": { - "width": 3589, - "height": 5037 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 49658, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477266+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477267+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477267+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477265+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 562 - }, - "imageDetail": { - "width": 5219, - "height": 6365 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70488, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447727+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477271+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477271+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477269+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 563 - }, - "imageDetail": { - "width": 6518, - "height": 8552 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24875, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477274+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477275+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477275+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477273+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 564 - }, - "imageDetail": { - "width": 8615, - "height": 9081 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86313, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477278+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477279+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477277+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 565 - }, - "imageDetail": { - "width": 4941, - "height": 5090 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 55198, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477282+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477282+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447728+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 566 - }, - "imageDetail": { - "width": 3984, - "height": 9433 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40784, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477285+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477286+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 567 - }, - "imageDetail": { - "width": 7279, - "height": 5428 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 90041, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477289+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477289+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477287+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 568 - }, - "imageDetail": { - "width": 7385, - "height": 6596 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 50088, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477292+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477293+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477291+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 569 - }, - "imageDetail": { - "width": 9586, - "height": 3785 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 87630, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477296+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477296+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477294+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 570 - }, - "imageDetail": { - "width": 5782, - "height": 2665 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 98725, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477299+00:00", - "fileLastModified": "2025-07-14T09:21:52.44773+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477298+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 571 - }, - "imageDetail": { - "width": 6725, - "height": 6937 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63777, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477303+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477303+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477304+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477301+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 572 - }, - "imageDetail": { - "width": 7281, - "height": 7135 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 43630, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477307+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477307+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477305+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 573 - }, - "imageDetail": { - "width": 9154, - "height": 6207 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70212, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477441+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477442+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477442+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477438+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 574 - }, - "imageDetail": { - "width": 7090, - "height": 2984 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 50044, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477445+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477446+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477446+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477444+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 575 - }, - "imageDetail": { - "width": 2667, - "height": 8467 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 67470, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477449+00:00", - "fileLastModified": "2025-07-14T09:21:52.447745+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477448+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 576 - }, - "imageDetail": { - "width": 4645, - "height": 3089 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 61770, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477453+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477454+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477454+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477451+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 577 - }, - "imageDetail": { - "width": 2784, - "height": 4695 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82605, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477457+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477458+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477456+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 578 - }, - "imageDetail": { - "width": 6209, - "height": 2223 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 84922, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477461+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477461+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477462+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477459+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 579 - }, - "imageDetail": { - "width": 1413, - "height": 8072 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 63480, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477465+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477465+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477463+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 580 - }, - "imageDetail": { - "width": 8056, - "height": 4028 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 76528, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477468+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477469+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477467+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 581 - }, - "imageDetail": { - "width": 7678, - "height": 6768 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 86161, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477471+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477472+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447747+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 582 - }, - "imageDetail": { - "width": 9435, - "height": 5427 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 45158, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477475+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477476+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477476+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477474+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 583 - }, - "imageDetail": { - "width": 9178, - "height": 6384 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 30638, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477479+00:00", - "fileLastModified": "2025-07-14T09:21:52.447748+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477478+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 584 - }, - "imageDetail": { - "width": 6663, - "height": 3730 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 90815, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477483+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477483+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477484+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477481+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 585 - }, - "imageDetail": { - "width": 324, - "height": 5504 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 83915, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477487+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477487+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477488+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477485+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 586 - }, - "imageDetail": { - "width": 9999, - "height": 8393 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 59077, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447749+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477491+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477491+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477489+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 587 - }, - "imageDetail": { - "width": 1512, - "height": 6830 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26526, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477522+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477522+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477522+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447752+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 588 - }, - "imageDetail": { - "width": 2865, - "height": 9230 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87741, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477525+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477526+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477524+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 589 - }, - "imageDetail": { - "width": 5443, - "height": 6072 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33936, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477529+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477529+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477527+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 590 - }, - "imageDetail": { - "width": 6222, - "height": 6964 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 85731, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477532+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477533+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477533+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477531+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 591 - }, - "imageDetail": { - "width": 6803, - "height": 8075 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76690, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477536+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477537+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477535+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 592 - }, - "imageDetail": { - "width": 9394, - "height": 7486 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21049, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447754+00:00", - "fileLastModified": "2025-07-14T09:21:52.447754+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477538+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 593 - }, - "imageDetail": { - "width": 668, - "height": 8821 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96192, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477543+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477544+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477544+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477542+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 594 - }, - "imageDetail": { - "width": 7530, - "height": 6387 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 29914, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477547+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477548+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477546+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 595 - }, - "imageDetail": { - "width": 1306, - "height": 2497 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 54702, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477551+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477551+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477552+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477549+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 596 - }, - "imageDetail": { - "width": 4485, - "height": 2825 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67467, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477555+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477555+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477553+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 597 - }, - "imageDetail": { - "width": 1969, - "height": 7498 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 32130, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477558+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477559+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477559+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477557+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 598 - }, - "imageDetail": { - "width": 3439, - "height": 6026 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 79765, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477562+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477563+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477561+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 599 - }, - "imageDetail": { - "width": 6965, - "height": 7787 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 53219, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477566+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477566+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477567+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477564+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 600 - }, - "imageDetail": { - "width": 4051, - "height": 7507 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 33182, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477601+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477601+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477602+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477568+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 601 - }, - "imageDetail": { - "width": 3909, - "height": 7553 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94006, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477605+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477606+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477604+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 602 - }, - "imageDetail": { - "width": 1257, - "height": 7989 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 86919, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477608+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477609+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477609+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477607+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 603 - }, - "imageDetail": { - "width": 466, - "height": 8976 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 63369, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477613+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477613+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477611+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 604 - }, - "imageDetail": { - "width": 6012, - "height": 3426 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44224, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477616+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477617+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477615+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 605 - }, - "imageDetail": { - "width": 276, - "height": 2076 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 57715, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447762+00:00", - "fileLastModified": "2025-07-14T09:21:52.447762+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477621+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477618+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 606 - }, - "imageDetail": { - "width": 8138, - "height": 5293 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74629, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477624+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477624+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477622+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 607 - }, - "imageDetail": { - "width": 607, - "height": 5464 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 92641, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477627+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477628+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477628+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477626+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 608 - }, - "imageDetail": { - "width": 8767, - "height": 2978 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 88524, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477631+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477632+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477632+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447763+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 609 - }, - "imageDetail": { - "width": 2846, - "height": 3210 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 34606, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477635+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477636+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477634+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 610 - }, - "imageDetail": { - "width": 7404, - "height": 6214 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 46245, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477639+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477639+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477637+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 611 - }, - "imageDetail": { - "width": 1749, - "height": 4981 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86343, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477642+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477643+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477641+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 612 - }, - "imageDetail": { - "width": 5812, - "height": 6469 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23992, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477646+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477646+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477644+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 613 - }, - "imageDetail": { - "width": 8017, - "height": 4061 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61290, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477649+00:00", - "fileLastModified": "2025-07-14T09:21:52.447765+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447765+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477648+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 614 - }, - "imageDetail": { - "width": 5846, - "height": 5459 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95165, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477679+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477679+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477677+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 615 - }, - "imageDetail": { - "width": 8167, - "height": 4314 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 81973, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477682+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477683+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477681+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 616 - }, - "imageDetail": { - "width": 6770, - "height": 6335 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 23077, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477686+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477686+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477687+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477684+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 617 - }, - "imageDetail": { - "width": 9145, - "height": 4435 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 65536, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447769+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477691+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477691+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477688+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 618 - }, - "imageDetail": { - "width": 9468, - "height": 6838 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60818, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477694+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477695+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477695+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477692+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 619 - }, - "imageDetail": { - "width": 4302, - "height": 8665 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72678, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477698+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477699+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477697+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 620 - }, - "imageDetail": { - "width": 1647, - "height": 3647 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 71831, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477702+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477702+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.44777+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 621 - }, - "imageDetail": { - "width": 7578, - "height": 7967 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 96712, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477706+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477706+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477704+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 622 - }, - "imageDetail": { - "width": 9628, - "height": 7630 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97152, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477709+00:00", - "fileLastModified": "2025-07-14T09:21:52.447771+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447771+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477707+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 623 - }, - "imageDetail": { - "width": 1434, - "height": 3273 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 41027, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477713+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477713+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477711+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 624 - }, - "imageDetail": { - "width": 4307, - "height": 7380 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34164, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477716+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477717+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477715+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 625 - }, - "imageDetail": { - "width": 1710, - "height": 9073 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 75519, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447772+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477721+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477719+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 626 - }, - "imageDetail": { - "width": 1912, - "height": 5228 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 23232, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477724+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477724+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477725+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477722+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 627 - }, - "imageDetail": { - "width": 3232, - "height": 7067 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82579, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477728+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477728+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477729+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477726+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 628 - }, - "imageDetail": { - "width": 2914, - "height": 3860 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 90198, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477757+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477758+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477758+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477756+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 629 - }, - "imageDetail": { - "width": 590, - "height": 2926 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77442, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477761+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477762+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447776+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 630 - }, - "imageDetail": { - "width": 9511, - "height": 5764 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 75549, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477765+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477765+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477763+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 631 - }, - "imageDetail": { - "width": 6480, - "height": 6251 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 62621, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477768+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477769+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477767+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 632 - }, - "imageDetail": { - "width": 9500, - "height": 9947 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80625, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477772+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477772+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447777+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 633 - }, - "imageDetail": { - "width": 6823, - "height": 9218 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33829, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477775+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477776+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477776+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477774+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 634 - }, - "imageDetail": { - "width": 2539, - "height": 7679 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 36929, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477779+00:00", - "fileLastModified": "2025-07-14T09:21:52.447778+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477777+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 635 - }, - "imageDetail": { - "width": 8459, - "height": 6614 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 91934, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477783+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477783+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477781+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 636 - }, - "imageDetail": { - "width": 5265, - "height": 3383 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 24996, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477786+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477787+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477787+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477785+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 637 - }, - "imageDetail": { - "width": 9383, - "height": 3309 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 66143, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447779+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477791+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477789+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 638 - }, - "imageDetail": { - "width": 5325, - "height": 3987 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 49700, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477793+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477794+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477792+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 639 - }, - "imageDetail": { - "width": 486, - "height": 7375 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 54638, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477797+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477798+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477795+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 640 - }, - "imageDetail": { - "width": 4382, - "height": 4451 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 20270, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.44778+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477801+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477799+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 641 - }, - "imageDetail": { - "width": 5537, - "height": 8749 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 88346, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477964+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477965+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477802+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 642 - }, - "imageDetail": { - "width": 9991, - "height": 2390 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90897, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447797+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477971+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477968+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 643 - }, - "imageDetail": { - "width": 4782, - "height": 3781 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77731, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477974+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477974+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477972+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 644 - }, - "imageDetail": { - "width": 5880, - "height": 6707 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 74551, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4477977+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477978+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477976+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 645 - }, - "imageDetail": { - "width": 4327, - "height": 7098 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 75728, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4477981+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477981+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477979+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 646 - }, - "imageDetail": { - "width": 7390, - "height": 9487 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47480, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4477984+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477985+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477985+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477983+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 647 - }, - "imageDetail": { - "width": 940, - "height": 9174 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 85215, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477988+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477989+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477989+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477987+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 648 - }, - "imageDetail": { - "width": 7149, - "height": 5822 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48676, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4477993+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477993+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477994+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477991+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 649 - }, - "imageDetail": { - "width": 9556, - "height": 7297 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94681, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4477997+00:00", - "fileLastModified": "2025-07-14T09:21:52.4477997+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4477998+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477995+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 650 - }, - "imageDetail": { - "width": 2396, - "height": 8022 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 89105, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478001+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478001+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478001+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4477999+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 651 - }, - "imageDetail": { - "width": 223, - "height": 9002 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 89355, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478004+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478005+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478005+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478003+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 652 - }, - "imageDetail": { - "width": 224, - "height": 5481 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 75911, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478008+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478009+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478006+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 653 - }, - "imageDetail": { - "width": 3672, - "height": 9699 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 74981, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478012+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478013+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478011+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 654 - }, - "imageDetail": { - "width": 3003, - "height": 7099 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34998, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478016+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478016+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478014+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 655 - }, - "imageDetail": { - "width": 8997, - "height": 9239 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 54763, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478039+00:00", - "fileLastModified": "2025-07-14T09:21:52.447804+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447804+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478038+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 656 - }, - "imageDetail": { - "width": 7112, - "height": 4432 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80056, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478043+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478044+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478042+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 657 - }, - "imageDetail": { - "width": 6888, - "height": 4387 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76819, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478047+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478047+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478048+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478045+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 658 - }, - "imageDetail": { - "width": 3847, - "height": 5388 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87530, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478051+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478051+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478049+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 659 - }, - "imageDetail": { - "width": 5270, - "height": 9431 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 87456, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478054+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478055+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478053+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 660 - }, - "imageDetail": { - "width": 3856, - "height": 7952 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 36669, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478057+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478058+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478058+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478056+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 661 - }, - "imageDetail": { - "width": 8387, - "height": 8383 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 78429, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478061+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478062+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478062+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447806+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 662 - }, - "imageDetail": { - "width": 7563, - "height": 9696 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53191, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478065+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478066+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478063+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 663 - }, - "imageDetail": { - "width": 9861, - "height": 9276 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 40092, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478069+00:00", - "fileLastModified": "2025-07-14T09:21:52.447807+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447807+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478067+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 664 - }, - "imageDetail": { - "width": 3047, - "height": 7525 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73963, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478073+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478074+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478072+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 665 - }, - "imageDetail": { - "width": 8944, - "height": 4015 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 53946, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478077+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478077+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478075+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 666 - }, - "imageDetail": { - "width": 3121, - "height": 6253 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 62881, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447808+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478081+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478081+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478079+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 667 - }, - "imageDetail": { - "width": 3262, - "height": 5291 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 80518, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478084+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478085+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478083+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 668 - }, - "imageDetail": { - "width": 6773, - "height": 5851 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44717, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478127+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478128+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478128+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478125+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 669 - }, - "imageDetail": { - "width": 7160, - "height": 8654 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38496, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478132+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478132+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478133+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447813+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 670 - }, - "imageDetail": { - "width": 7070, - "height": 2112 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 75233, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478136+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478136+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478137+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478134+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 671 - }, - "imageDetail": { - "width": 9013, - "height": 5801 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22265, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478139+00:00", - "fileLastModified": "2025-07-14T09:21:52.447814+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447814+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478138+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 672 - }, - "imageDetail": { - "width": 3411, - "height": 6732 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 47241, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478143+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478144+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478144+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478142+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 673 - }, - "imageDetail": { - "width": 8825, - "height": 9202 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 36338, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478147+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478147+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478145+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 674 - }, - "imageDetail": { - "width": 8693, - "height": 4080 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27969, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447815+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478151+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478151+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478149+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 675 - }, - "imageDetail": { - "width": 584, - "height": 5197 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 51443, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478154+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478155+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478155+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478153+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 676 - }, - "imageDetail": { - "width": 4449, - "height": 7579 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 20418, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478158+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478159+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478157+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 677 - }, - "imageDetail": { - "width": 7564, - "height": 9660 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 52533, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478161+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478162+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447816+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 678 - }, - "imageDetail": { - "width": 5009, - "height": 2576 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 56608, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478165+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478166+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478164+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 679 - }, - "imageDetail": { - "width": 3968, - "height": 5255 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 54026, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478169+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478169+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447817+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478167+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 680 - }, - "imageDetail": { - "width": 4592, - "height": 9759 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34879, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478172+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478173+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478171+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 681 - }, - "imageDetail": { - "width": 8016, - "height": 5977 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47817, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478176+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478176+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478174+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 682 - }, - "imageDetail": { - "width": 3133, - "height": 4255 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 74257, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478213+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478213+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478214+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478211+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 683 - }, - "imageDetail": { - "width": 3105, - "height": 4205 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72973, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478217+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478217+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478215+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 684 - }, - "imageDetail": { - "width": 8997, - "height": 8414 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98373, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447822+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478221+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478221+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478219+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 685 - }, - "imageDetail": { - "width": 853, - "height": 4020 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 84924, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478224+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478225+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478225+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478223+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 686 - }, - "imageDetail": { - "width": 3050, - "height": 3749 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 38911, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478228+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478229+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478227+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 687 - }, - "imageDetail": { - "width": 3140, - "height": 5289 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 40489, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478232+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478232+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478233+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447823+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 688 - }, - "imageDetail": { - "width": 7217, - "height": 3580 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40083, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478236+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478236+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478237+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478234+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 689 - }, - "imageDetail": { - "width": 991, - "height": 4631 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 99011, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447824+00:00", - "fileLastModified": "2025-07-14T09:21:52.447824+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478238+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 690 - }, - "imageDetail": { - "width": 7716, - "height": 8993 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 53452, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478243+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478244+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478242+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 691 - }, - "imageDetail": { - "width": 4511, - "height": 4002 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 75961, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478247+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478248+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478245+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 692 - }, - "imageDetail": { - "width": 5765, - "height": 3632 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69003, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478251+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478251+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478249+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 693 - }, - "imageDetail": { - "width": 2834, - "height": 8125 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 89971, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478254+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478254+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478255+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478252+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 694 - }, - "imageDetail": { - "width": 8767, - "height": 8892 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 34142, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478258+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478258+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478256+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 695 - }, - "imageDetail": { - "width": 7080, - "height": 2039 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 53209, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478261+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478262+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478262+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447826+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 696 - }, - "imageDetail": { - "width": 8759, - "height": 8801 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90401, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478288+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478289+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478286+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 697 - }, - "imageDetail": { - "width": 3456, - "height": 3017 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55079, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478291+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478292+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478293+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447829+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 698 - }, - "imageDetail": { - "width": 9651, - "height": 2352 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 32421, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478295+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478296+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478297+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478294+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 699 - }, - "imageDetail": { - "width": 1850, - "height": 2242 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98494, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.44783+00:00", - "fileLastModified": "2025-07-14T09:21:52.44783+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478298+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 700 - }, - "imageDetail": { - "width": 7665, - "height": 3711 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 82748, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478303+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478304+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478302+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 701 - }, - "imageDetail": { - "width": 7248, - "height": 9709 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82732, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478307+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478307+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478308+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478305+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 702 - }, - "imageDetail": { - "width": 7297, - "height": 4210 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 21254, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478311+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478311+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478309+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 703 - }, - "imageDetail": { - "width": 9042, - "height": 8556 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 35803, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478314+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478315+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478313+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 704 - }, - "imageDetail": { - "width": 845, - "height": 5542 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31426, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478318+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478319+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478319+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478316+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 705 - }, - "imageDetail": { - "width": 5153, - "height": 8480 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 80350, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478322+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478323+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478323+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447832+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 706 - }, - "imageDetail": { - "width": 3666, - "height": 7583 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57523, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478326+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478327+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478327+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478325+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 707 - }, - "imageDetail": { - "width": 7726, - "height": 9404 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 96231, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447833+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478331+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478331+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478329+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 708 - }, - "imageDetail": { - "width": 8263, - "height": 9160 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46122, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478334+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478335+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478335+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478332+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 709 - }, - "imageDetail": { - "width": 6150, - "height": 4089 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86641, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478364+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478365+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478365+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478363+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 710 - }, - "imageDetail": { - "width": 6370, - "height": 4474 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 38719, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478368+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478369+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478369+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478367+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 711 - }, - "imageDetail": { - "width": 4258, - "height": 4959 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33043, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478372+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478373+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478371+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 712 - }, - "imageDetail": { - "width": 9223, - "height": 8391 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65681, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478376+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478376+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478374+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 713 - }, - "imageDetail": { - "width": 1028, - "height": 7333 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94224, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478379+00:00", - "fileLastModified": "2025-07-14T09:21:52.447838+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478378+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 714 - }, - "imageDetail": { - "width": 9424, - "height": 6488 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 72606, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478383+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478383+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478381+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 715 - }, - "imageDetail": { - "width": 2986, - "height": 2039 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58982, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478386+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478387+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478385+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 716 - }, - "imageDetail": { - "width": 7344, - "height": 5816 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 93195, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447839+00:00", - "fileLastModified": "2025-07-14T09:21:52.447839+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478388+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 717 - }, - "imageDetail": { - "width": 9159, - "height": 7384 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 55953, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478393+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478394+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478392+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 718 - }, - "imageDetail": { - "width": 3735, - "height": 4359 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 48809, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478397+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478397+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478398+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478395+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 719 - }, - "imageDetail": { - "width": 3071, - "height": 5200 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63617, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.44784+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478401+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478399+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 720 - }, - "imageDetail": { - "width": 2411, - "height": 9735 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34078, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478404+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478405+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478403+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 721 - }, - "imageDetail": { - "width": 9962, - "height": 4852 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 74144, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478408+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478408+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478409+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478406+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 722 - }, - "imageDetail": { - "width": 5916, - "height": 9582 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 78998, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478412+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478412+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478413+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447841+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 723 - }, - "imageDetail": { - "width": 4920, - "height": 6831 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59449, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478439+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478439+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447844+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478437+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 724 - }, - "imageDetail": { - "width": 932, - "height": 5826 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 54028, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478443+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478445+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478441+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 725 - }, - "imageDetail": { - "width": 211, - "height": 9398 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 47153, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478448+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478449+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478447+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 726 - }, - "imageDetail": { - "width": 7920, - "height": 3203 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 67995, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478452+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478452+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447845+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 727 - }, - "imageDetail": { - "width": 9744, - "height": 2131 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 99773, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478455+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478455+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478454+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 728 - }, - "imageDetail": { - "width": 6864, - "height": 5980 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69357, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478458+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478459+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478457+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 729 - }, - "imageDetail": { - "width": 8035, - "height": 8668 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 93396, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478462+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478462+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478463+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447846+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 730 - }, - "imageDetail": { - "width": 9377, - "height": 6297 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60855, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478466+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478466+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478467+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478464+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 731 - }, - "imageDetail": { - "width": 178, - "height": 4600 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 52371, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447847+00:00", - "fileLastModified": "2025-07-14T09:21:52.447847+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478468+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 732 - }, - "imageDetail": { - "width": 9577, - "height": 5876 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 20641, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478473+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478474+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478475+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478472+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 733 - }, - "imageDetail": { - "width": 1006, - "height": 3789 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 35247, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478477+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478478+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478476+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 734 - }, - "imageDetail": { - "width": 313, - "height": 7095 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61927, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478481+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478481+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478482+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478479+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 735 - }, - "imageDetail": { - "width": 6224, - "height": 2574 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 57255, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478485+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478485+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478486+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478483+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 736 - }, - "imageDetail": { - "width": 8655, - "height": 4607 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53278, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478489+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478489+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478487+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 737 - }, - "imageDetail": { - "width": 3245, - "height": 3957 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72449, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478516+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478517+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478517+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478515+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 738 - }, - "imageDetail": { - "width": 7444, - "height": 6406 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 93173, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447852+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478521+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478519+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 739 - }, - "imageDetail": { - "width": 8623, - "height": 5205 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 80722, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478524+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478524+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478525+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478522+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 740 - }, - "imageDetail": { - "width": 9945, - "height": 6547 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64744, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478527+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478528+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478526+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 741 - }, - "imageDetail": { - "width": 5720, - "height": 8839 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 26156, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478531+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478532+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478529+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 742 - }, - "imageDetail": { - "width": 183, - "height": 6595 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 98301, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478535+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478535+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478536+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478533+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 743 - }, - "imageDetail": { - "width": 3736, - "height": 2455 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33513, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478538+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478539+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478537+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 744 - }, - "imageDetail": { - "width": 2222, - "height": 5275 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 51640, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478542+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478543+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447854+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 745 - }, - "imageDetail": { - "width": 6166, - "height": 8547 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 47429, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478546+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478547+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478544+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 746 - }, - "imageDetail": { - "width": 292, - "height": 7933 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 94151, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478569+00:00", - "fileLastModified": "2025-07-14T09:21:52.447857+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478548+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 747 - }, - "imageDetail": { - "width": 8558, - "height": 4078 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 79842, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478575+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478575+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478572+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 748 - }, - "imageDetail": { - "width": 3258, - "height": 2662 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70714, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447858+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478581+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478577+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 749 - }, - "imageDetail": { - "width": 687, - "height": 6614 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 21357, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478585+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478585+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478586+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478582+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 750 - }, - "imageDetail": { - "width": 7974, - "height": 6213 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 28500, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478622+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478622+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478619+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 751 - }, - "imageDetail": { - "width": 2051, - "height": 6573 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44674, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478627+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478628+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478625+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 752 - }, - "imageDetail": { - "width": 1205, - "height": 8770 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83599, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478632+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478633+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447863+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 753 - }, - "imageDetail": { - "width": 1008, - "height": 3050 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 56949, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478637+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478638+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478635+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 754 - }, - "imageDetail": { - "width": 4022, - "height": 7337 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92596, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478642+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478643+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447864+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 755 - }, - "imageDetail": { - "width": 5933, - "height": 5621 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 70789, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478647+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478648+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478645+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 756 - }, - "imageDetail": { - "width": 2263, - "height": 5931 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69869, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478652+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478653+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447865+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 757 - }, - "imageDetail": { - "width": 7059, - "height": 6748 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 28221, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478657+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478658+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478655+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 758 - }, - "imageDetail": { - "width": 4349, - "height": 6970 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 89822, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478662+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478663+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478664+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447866+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 759 - }, - "imageDetail": { - "width": 3387, - "height": 8064 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 27110, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478669+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478669+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447867+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478666+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 760 - }, - "imageDetail": { - "width": 1537, - "height": 2915 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 79351, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478674+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478675+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478676+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478672+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 761 - }, - "imageDetail": { - "width": 7564, - "height": 4004 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 34276, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447868+00:00", - "fileLastModified": "2025-07-14T09:21:52.447868+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478681+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478677+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 762 - }, - "imageDetail": { - "width": 1860, - "height": 3751 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94161, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478685+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478686+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478687+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478683+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 763 - }, - "imageDetail": { - "width": 8076, - "height": 6076 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 29701, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478691+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478692+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478693+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478689+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 764 - }, - "imageDetail": { - "width": 8388, - "height": 4205 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 68289, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478731+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478732+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478726+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 765 - }, - "imageDetail": { - "width": 4166, - "height": 7611 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 22682, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478737+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478737+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478734+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 766 - }, - "imageDetail": { - "width": 1191, - "height": 9896 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60414, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478743+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478744+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478744+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478739+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 767 - }, - "imageDetail": { - "width": 2100, - "height": 2273 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 67533, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478748+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478748+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478746+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 768 - }, - "imageDetail": { - "width": 2105, - "height": 8901 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50381, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478751+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478752+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478752+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447875+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 769 - }, - "imageDetail": { - "width": 709, - "height": 8342 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 60202, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478755+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478756+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478756+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478753+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 770 - }, - "imageDetail": { - "width": 5882, - "height": 4393 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 56160, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478759+00:00", - "fileLastModified": "2025-07-14T09:21:52.447876+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478758+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 771 - }, - "imageDetail": { - "width": 6589, - "height": 2697 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 77864, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478763+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478763+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478764+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478761+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 772 - }, - "imageDetail": { - "width": 8198, - "height": 9579 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60902, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478767+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478767+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478765+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 773 - }, - "imageDetail": { - "width": 8326, - "height": 5357 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 93836, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447877+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478771+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478771+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478769+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 774 - }, - "imageDetail": { - "width": 8610, - "height": 7860 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43651, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478774+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478775+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478775+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478773+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 775 - }, - "imageDetail": { - "width": 8070, - "height": 3527 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 41522, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478778+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478779+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478777+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 776 - }, - "imageDetail": { - "width": 1104, - "height": 4228 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91566, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478782+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478782+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478783+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447878+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 777 - }, - "imageDetail": { - "width": 7174, - "height": 5315 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 28331, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478823+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478824+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478824+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478821+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 778 - }, - "imageDetail": { - "width": 7750, - "height": 9231 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73079, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478827+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478828+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478826+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 779 - }, - "imageDetail": { - "width": 9836, - "height": 9617 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 41689, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478831+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478832+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478832+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447883+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 780 - }, - "imageDetail": { - "width": 7607, - "height": 3541 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58785, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478835+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478836+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478836+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478834+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 781 - }, - "imageDetail": { - "width": 887, - "height": 9924 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82388, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478839+00:00", - "fileLastModified": "2025-07-14T09:21:52.447884+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447884+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478837+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 782 - }, - "imageDetail": { - "width": 6521, - "height": 6953 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 64845, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478843+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478843+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478841+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 783 - }, - "imageDetail": { - "width": 9286, - "height": 3855 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64850, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478846+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478847+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478847+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478845+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 784 - }, - "imageDetail": { - "width": 1897, - "height": 9757 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 48339, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447885+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478851+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478849+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 785 - }, - "imageDetail": { - "width": 6582, - "height": 8925 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23192, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478854+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478854+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478852+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 786 - }, - "imageDetail": { - "width": 4242, - "height": 7293 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50203, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478858+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478858+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478859+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478856+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 787 - }, - "imageDetail": { - "width": 8067, - "height": 8810 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 46068, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478861+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478862+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478862+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447886+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 788 - }, - "imageDetail": { - "width": 775, - "height": 6073 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97762, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478866+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478866+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478864+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 789 - }, - "imageDetail": { - "width": 8964, - "height": 4230 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 57924, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478869+00:00", - "fileLastModified": "2025-07-14T09:21:52.447887+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447887+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478868+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 790 - }, - "imageDetail": { - "width": 7958, - "height": 2206 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 78280, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478873+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478874+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478874+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478872+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 791 - }, - "imageDetail": { - "width": 933, - "height": 2532 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 22050, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478912+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478913+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478911+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 792 - }, - "imageDetail": { - "width": 9974, - "height": 2658 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 22279, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478916+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478916+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478914+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 793 - }, - "imageDetail": { - "width": 2611, - "height": 9063 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 52367, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478919+00:00", - "fileLastModified": "2025-07-14T09:21:52.447892+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447892+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478918+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 794 - }, - "imageDetail": { - "width": 2284, - "height": 6798 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 22766, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478923+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478924+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478922+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 795 - }, - "imageDetail": { - "width": 5728, - "height": 2694 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32034, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478927+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478927+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478928+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478925+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 796 - }, - "imageDetail": { - "width": 9999, - "height": 3480 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40139, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447893+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478931+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478929+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 797 - }, - "imageDetail": { - "width": 345, - "height": 7122 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77873, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478934+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478935+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478935+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478932+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 798 - }, - "imageDetail": { - "width": 7174, - "height": 8954 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 81837, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478938+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478939+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478936+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 799 - }, - "imageDetail": { - "width": 2382, - "height": 5906 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 38173, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478941+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478942+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447894+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 800 - }, - "imageDetail": { - "width": 7661, - "height": 3731 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 71716, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4478945+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478946+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478943+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 801 - }, - "imageDetail": { - "width": 9204, - "height": 9259 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 88198, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478949+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478949+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478947+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 802 - }, - "imageDetail": { - "width": 2233, - "height": 4866 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82665, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478952+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478953+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478951+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 803 - }, - "imageDetail": { - "width": 2313, - "height": 8464 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 91389, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4478956+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478957+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478957+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478954+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 804 - }, - "imageDetail": { - "width": 6140, - "height": 5538 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 83653, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4478989+00:00", - "fileLastModified": "2025-07-14T09:21:52.447899+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447899+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478959+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 805 - }, - "imageDetail": { - "width": 5341, - "height": 6367 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46151, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4478994+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478994+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478995+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478992+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 806 - }, - "imageDetail": { - "width": 122, - "height": 7290 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 54150, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4478998+00:00", - "fileLastModified": "2025-07-14T09:21:52.4478998+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4478998+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4478996+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 807 - }, - "imageDetail": { - "width": 8482, - "height": 9641 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 96829, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479001+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479002+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479002+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 808 - }, - "imageDetail": { - "width": 9526, - "height": 3027 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 86291, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479005+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479006+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479004+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 809 - }, - "imageDetail": { - "width": 4969, - "height": 9434 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83232, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479009+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479009+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479007+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 810 - }, - "imageDetail": { - "width": 5916, - "height": 7781 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 95158, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479012+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479013+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479011+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 811 - }, - "imageDetail": { - "width": 4563, - "height": 9727 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59212, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479016+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479016+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479017+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479014+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 812 - }, - "imageDetail": { - "width": 3011, - "height": 4919 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 90495, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479019+00:00", - "fileLastModified": "2025-07-14T09:21:52.447902+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479018+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 813 - }, - "imageDetail": { - "width": 5417, - "height": 2075 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 61252, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479023+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479023+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479021+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 814 - }, - "imageDetail": { - "width": 1393, - "height": 6773 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80006, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479026+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479027+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479025+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 815 - }, - "imageDetail": { - "width": 8084, - "height": 8367 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 38627, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447903+00:00", - "fileLastModified": "2025-07-14T09:21:52.447903+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479031+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479028+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 816 - }, - "imageDetail": { - "width": 9628, - "height": 5519 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 89401, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479034+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479034+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479032+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 817 - }, - "imageDetail": { - "width": 2099, - "height": 9085 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 74992, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479038+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479038+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479038+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479036+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 818 - }, - "imageDetail": { - "width": 7459, - "height": 7002 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 98077, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479142+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479143+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479139+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 819 - }, - "imageDetail": { - "width": 5868, - "height": 9170 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 92388, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479146+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479147+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479147+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479145+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 820 - }, - "imageDetail": { - "width": 8820, - "height": 9729 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 35271, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447915+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479151+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479149+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 821 - }, - "imageDetail": { - "width": 1212, - "height": 6541 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89469, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479153+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479154+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479155+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479152+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 822 - }, - "imageDetail": { - "width": 691, - "height": 2927 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50233, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479158+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479158+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479159+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479156+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 823 - }, - "imageDetail": { - "width": 7470, - "height": 6459 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 78341, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479162+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479162+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479163+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447916+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 824 - }, - "imageDetail": { - "width": 5324, - "height": 6882 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97072, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479166+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479166+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479166+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479164+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 825 - }, - "imageDetail": { - "width": 6212, - "height": 7179 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 48198, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479169+00:00", - "fileLastModified": "2025-07-14T09:21:52.447917+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447917+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479168+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 826 - }, - "imageDetail": { - "width": 8202, - "height": 3575 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 49652, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479173+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479174+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479172+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 827 - }, - "imageDetail": { - "width": 2043, - "height": 6048 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59703, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479177+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479177+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479175+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 828 - }, - "imageDetail": { - "width": 3873, - "height": 7018 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34007, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447918+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479181+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479179+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 829 - }, - "imageDetail": { - "width": 4153, - "height": 8122 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82160, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479184+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479184+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479185+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479182+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 830 - }, - "imageDetail": { - "width": 4929, - "height": 8706 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 90181, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479188+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479188+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479186+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 831 - }, - "imageDetail": { - "width": 8312, - "height": 8672 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 96847, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479192+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479192+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479193+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447919+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 832 - }, - "imageDetail": { - "width": 4329, - "height": 7914 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 55755, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479223+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479224+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479222+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 833 - }, - "imageDetail": { - "width": 6366, - "height": 5565 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 27044, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479227+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479227+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479225+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 834 - }, - "imageDetail": { - "width": 9101, - "height": 9816 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 57208, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447923+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479231+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479232+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479229+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 835 - }, - "imageDetail": { - "width": 2200, - "height": 8743 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 31206, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479234+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479235+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479235+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479233+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 836 - }, - "imageDetail": { - "width": 4601, - "height": 6162 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87048, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479238+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479239+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479237+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 837 - }, - "imageDetail": { - "width": 9320, - "height": 8317 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80955, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479242+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479242+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479243+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447924+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 838 - }, - "imageDetail": { - "width": 5646, - "height": 2206 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35613, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479246+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479246+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479247+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479244+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 839 - }, - "imageDetail": { - "width": 4332, - "height": 8493 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73427, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447925+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479251+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479248+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 840 - }, - "imageDetail": { - "width": 6242, - "height": 7091 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 41909, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479254+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479254+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479255+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479252+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 841 - }, - "imageDetail": { - "width": 5187, - "height": 6393 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 81103, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479257+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479258+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479258+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479256+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 842 - }, - "imageDetail": { - "width": 4739, - "height": 8031 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 52558, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479261+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479262+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447926+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 843 - }, - "imageDetail": { - "width": 6657, - "height": 2762 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94909, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479265+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479265+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479263+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 844 - }, - "imageDetail": { - "width": 357, - "height": 8756 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 88480, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479269+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479269+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479267+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 845 - }, - "imageDetail": { - "width": 5943, - "height": 9518 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 83978, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479303+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479304+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479304+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479271+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 846 - }, - "imageDetail": { - "width": 8448, - "height": 2913 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38827, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479308+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479308+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479309+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479306+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 847 - }, - "imageDetail": { - "width": 9510, - "height": 9892 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 67837, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479312+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479312+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447931+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 848 - }, - "imageDetail": { - "width": 4796, - "height": 7156 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 62983, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479315+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479316+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479316+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479314+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 849 - }, - "imageDetail": { - "width": 2479, - "height": 4827 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82205, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479319+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479319+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447932+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479317+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 850 - }, - "imageDetail": { - "width": 5412, - "height": 4924 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 21549, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479323+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479323+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479324+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479321+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 851 - }, - "imageDetail": { - "width": 8633, - "height": 4257 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 43799, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479327+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479327+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479325+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 852 - }, - "imageDetail": { - "width": 3271, - "height": 4966 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47914, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.447933+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479331+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479331+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479329+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 853 - }, - "imageDetail": { - "width": 258, - "height": 9802 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 71083, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479334+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479335+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479335+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479333+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 854 - }, - "imageDetail": { - "width": 4499, - "height": 9206 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 88455, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479338+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479339+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479337+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 855 - }, - "imageDetail": { - "width": 182, - "height": 2206 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 84601, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479342+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479343+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447934+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 856 - }, - "imageDetail": { - "width": 3326, - "height": 2553 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91034, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479346+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479346+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479347+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479344+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 857 - }, - "imageDetail": { - "width": 666, - "height": 5270 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 28412, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479349+00:00", - "fileLastModified": "2025-07-14T09:21:52.447935+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479348+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 858 - }, - "imageDetail": { - "width": 1341, - "height": 9068 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37505, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479353+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479353+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479354+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479351+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 859 - }, - "imageDetail": { - "width": 2286, - "height": 8647 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 87145, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479385+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479385+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479383+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 860 - }, - "imageDetail": { - "width": 9414, - "height": 7584 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 26468, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479388+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479389+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479387+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 861 - }, - "imageDetail": { - "width": 1056, - "height": 2421 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 22425, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479392+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479392+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479393+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447939+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 862 - }, - "imageDetail": { - "width": 3805, - "height": 3800 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61465, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479396+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479396+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479397+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479394+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 863 - }, - "imageDetail": { - "width": 8880, - "height": 6508 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 57405, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.44794+00:00", - "fileLastModified": "2025-07-14T09:21:52.44794+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479398+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 864 - }, - "imageDetail": { - "width": 8405, - "height": 2639 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86717, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479403+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479404+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479404+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479402+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 865 - }, - "imageDetail": { - "width": 6958, - "height": 9963 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 59098, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479407+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479408+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479406+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 866 - }, - "imageDetail": { - "width": 9207, - "height": 5096 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70224, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479411+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479411+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479412+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479409+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 867 - }, - "imageDetail": { - "width": 7019, - "height": 4871 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 91087, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479415+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479415+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479413+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 868 - }, - "imageDetail": { - "width": 9964, - "height": 6732 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 30526, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479418+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479419+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479417+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 869 - }, - "imageDetail": { - "width": 4907, - "height": 7079 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73114, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479422+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479422+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447942+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 870 - }, - "imageDetail": { - "width": 4689, - "height": 7225 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 39897, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479425+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479426+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479426+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479424+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 871 - }, - "imageDetail": { - "width": 4331, - "height": 2296 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 69647, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479429+00:00", - "fileLastModified": "2025-07-14T09:21:52.447943+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479428+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 872 - }, - "imageDetail": { - "width": 9313, - "height": 4657 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 88249, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479432+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479433+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479434+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479431+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 873 - }, - "imageDetail": { - "width": 9004, - "height": 8935 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34215, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479455+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479455+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479456+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479453+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 874 - }, - "imageDetail": { - "width": 8405, - "height": 7277 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24738, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479458+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479459+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479459+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479457+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 875 - }, - "imageDetail": { - "width": 4415, - "height": 4041 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 99029, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479462+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479463+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479463+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479461+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 876 - }, - "imageDetail": { - "width": 7953, - "height": 8254 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 78776, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479466+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479467+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479465+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 877 - }, - "imageDetail": { - "width": 4723, - "height": 2929 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 38876, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.447947+00:00", - "fileLastModified": "2025-07-14T09:21:52.447947+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479471+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479468+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 878 - }, - "imageDetail": { - "width": 8410, - "height": 6405 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24069, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479473+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479474+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479472+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 879 - }, - "imageDetail": { - "width": 6207, - "height": 9695 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 42529, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479477+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479477+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479478+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479475+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 880 - }, - "imageDetail": { - "width": 6840, - "height": 6878 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 83980, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479481+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479481+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479482+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479479+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 881 - }, - "imageDetail": { - "width": 1513, - "height": 8577 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 64104, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479485+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479485+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479486+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479483+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 882 - }, - "imageDetail": { - "width": 2897, - "height": 6686 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46047, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479489+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479489+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479487+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 883 - }, - "imageDetail": { - "width": 4477, - "height": 8895 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76561, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479492+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479493+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479493+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479491+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 884 - }, - "imageDetail": { - "width": 7368, - "height": 8043 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 88136, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479496+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479497+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479494+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 885 - }, - "imageDetail": { - "width": 8211, - "height": 5459 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 31909, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.44795+00:00", - "fileLastModified": "2025-07-14T09:21:52.44795+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479501+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479498+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 886 - }, - "imageDetail": { - "width": 6442, - "height": 3756 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60500, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479547+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479547+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479545+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 887 - }, - "imageDetail": { - "width": 2671, - "height": 3643 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 53366, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479551+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479551+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479552+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479549+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 888 - }, - "imageDetail": { - "width": 9931, - "height": 4636 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 49525, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479555+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479555+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479555+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479553+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 889 - }, - "imageDetail": { - "width": 9950, - "height": 4615 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 30676, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479558+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479559+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479559+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479557+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 890 - }, - "imageDetail": { - "width": 9771, - "height": 5665 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 49527, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479562+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479563+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479561+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 891 - }, - "imageDetail": { - "width": 4866, - "height": 6052 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 87593, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479566+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479566+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479564+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 892 - }, - "imageDetail": { - "width": 870, - "height": 7032 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40329, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479569+00:00", - "fileLastModified": "2025-07-14T09:21:52.447957+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447957+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479568+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 893 - }, - "imageDetail": { - "width": 1943, - "height": 5741 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63495, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479573+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479574+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479572+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 894 - }, - "imageDetail": { - "width": 5181, - "height": 3303 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75043, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479577+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479578+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479576+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 895 - }, - "imageDetail": { - "width": 4787, - "height": 9858 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88468, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479581+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479581+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479582+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479579+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 896 - }, - "imageDetail": { - "width": 4334, - "height": 9081 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 79737, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479584+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479585+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479583+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 897 - }, - "imageDetail": { - "width": 7473, - "height": 2702 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23572, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479588+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479588+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479589+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479586+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 898 - }, - "imageDetail": { - "width": 7305, - "height": 6853 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67602, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479592+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479592+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479593+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447959+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 899 - }, - "imageDetail": { - "width": 9503, - "height": 6423 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 58483, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479596+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479596+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479594+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 900 - }, - "imageDetail": { - "width": 4380, - "height": 8626 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 96903, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479644+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479645+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479645+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479642+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 901 - }, - "imageDetail": { - "width": 371, - "height": 2944 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 99889, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479648+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479649+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479649+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479647+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 902 - }, - "imageDetail": { - "width": 7059, - "height": 8842 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 34076, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479652+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479653+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479653+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479651+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 903 - }, - "imageDetail": { - "width": 2923, - "height": 3838 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77637, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479656+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479657+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479657+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479655+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 904 - }, - "imageDetail": { - "width": 2598, - "height": 2006 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 76526, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447966+00:00", - "fileLastModified": "2025-07-14T09:21:52.447966+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479658+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 905 - }, - "imageDetail": { - "width": 4546, - "height": 9803 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 91603, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479663+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479664+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479662+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 906 - }, - "imageDetail": { - "width": 5977, - "height": 2742 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23773, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479667+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479667+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479668+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479665+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 907 - }, - "imageDetail": { - "width": 3615, - "height": 9832 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45122, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479671+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479671+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479669+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 908 - }, - "imageDetail": { - "width": 4954, - "height": 3540 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 68636, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479674+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479675+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479675+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479673+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 909 - }, - "imageDetail": { - "width": 2986, - "height": 7772 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33962, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479678+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479679+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479679+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479677+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 910 - }, - "imageDetail": { - "width": 7709, - "height": 2150 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 57242, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479682+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479683+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479681+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 911 - }, - "imageDetail": { - "width": 3209, - "height": 3641 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 42482, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479686+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479686+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479687+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479684+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 912 - }, - "imageDetail": { - "width": 7162, - "height": 5154 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 88194, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479704+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479705+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479688+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 913 - }, - "imageDetail": { - "width": 4118, - "height": 3666 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 50243, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479735+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479736+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479736+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479707+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 914 - }, - "imageDetail": { - "width": 2262, - "height": 7062 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58663, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479739+00:00", - "fileLastModified": "2025-07-14T09:21:52.447974+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447974+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479738+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 915 - }, - "imageDetail": { - "width": 6536, - "height": 4857 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 56304, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479743+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479744+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479742+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 916 - }, - "imageDetail": { - "width": 4887, - "height": 2129 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37236, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479747+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479747+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479748+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479745+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 917 - }, - "imageDetail": { - "width": 7334, - "height": 6559 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 49848, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447975+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479751+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479751+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479749+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 918 - }, - "imageDetail": { - "width": 1953, - "height": 5810 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75222, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479754+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479755+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479755+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479753+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 919 - }, - "imageDetail": { - "width": 7993, - "height": 6502 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 81018, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479758+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479759+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479759+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479757+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 920 - }, - "imageDetail": { - "width": 2009, - "height": 3487 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 65117, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479762+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479763+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479761+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 921 - }, - "imageDetail": { - "width": 420, - "height": 5475 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23237, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479766+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479767+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479767+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479764+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 922 - }, - "imageDetail": { - "width": 9810, - "height": 7530 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95117, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.447977+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479771+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479771+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479768+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 923 - }, - "imageDetail": { - "width": 4421, - "height": 5674 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37228, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479774+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479775+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479775+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479772+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 924 - }, - "imageDetail": { - "width": 3628, - "height": 6522 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 44834, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479778+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479778+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479776+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 925 - }, - "imageDetail": { - "width": 5465, - "height": 3959 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 63486, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479782+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479782+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447978+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 926 - }, - "imageDetail": { - "width": 4967, - "height": 6229 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44826, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479785+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479785+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479786+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479783+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 927 - }, - "imageDetail": { - "width": 7631, - "height": 5718 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 51601, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479818+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479819+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479819+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479816+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 928 - }, - "imageDetail": { - "width": 7773, - "height": 3470 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 86569, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479822+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479822+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479823+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447982+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 929 - }, - "imageDetail": { - "width": 9422, - "height": 8920 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 27141, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479826+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479826+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479827+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479824+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 930 - }, - "imageDetail": { - "width": 8314, - "height": 8609 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 73422, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.447983+00:00", - "fileLastModified": "2025-07-14T09:21:52.447983+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479828+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 931 - }, - "imageDetail": { - "width": 1771, - "height": 2671 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 51826, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479833+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479834+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479834+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479832+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 932 - }, - "imageDetail": { - "width": 3085, - "height": 9528 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92809, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479837+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479838+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479838+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479836+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 933 - }, - "imageDetail": { - "width": 4671, - "height": 4276 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75233, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479841+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479842+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447984+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 934 - }, - "imageDetail": { - "width": 1252, - "height": 3213 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24519, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479845+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479845+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479843+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 935 - }, - "imageDetail": { - "width": 6816, - "height": 8155 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 98079, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479848+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479849+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479847+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 936 - }, - "imageDetail": { - "width": 1143, - "height": 2304 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43083, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479852+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479853+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479853+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479851+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 937 - }, - "imageDetail": { - "width": 1645, - "height": 7942 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61563, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479856+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479856+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479857+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479854+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 938 - }, - "imageDetail": { - "width": 4132, - "height": 2320 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 54292, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.447986+00:00", - "fileLastModified": "2025-07-14T09:21:52.447986+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479861+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479858+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 939 - }, - "imageDetail": { - "width": 4368, - "height": 4595 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33300, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479864+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479864+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479865+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479862+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 940 - }, - "imageDetail": { - "width": 9461, - "height": 5185 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 90482, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479868+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479868+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479866+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 941 - }, - "imageDetail": { - "width": 9430, - "height": 8833 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 64514, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479901+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479901+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479902+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479899+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 942 - }, - "imageDetail": { - "width": 2104, - "height": 5994 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 63092, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479905+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479905+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479903+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 943 - }, - "imageDetail": { - "width": 4256, - "height": 2380 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 42957, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479908+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479909+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479907+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 944 - }, - "imageDetail": { - "width": 7177, - "height": 4358 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 48250, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479912+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479912+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447991+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 945 - }, - "imageDetail": { - "width": 5811, - "height": 4680 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77085, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479915+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479916+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479916+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479914+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 946 - }, - "imageDetail": { - "width": 3299, - "height": 4029 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37862, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479919+00:00", - "fileLastModified": "2025-07-14T09:21:52.447992+00:00", - "fileLastViewed": "2025-07-14T09:21:52.447992+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479918+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 947 - }, - "imageDetail": { - "width": 6313, - "height": 5278 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89531, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479923+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479924+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479924+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479922+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 948 - }, - "imageDetail": { - "width": 3770, - "height": 3956 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43611, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479927+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479928+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479928+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479926+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 949 - }, - "imageDetail": { - "width": 6622, - "height": 6478 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77659, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479931+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479931+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479929+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 950 - }, - "imageDetail": { - "width": 6455, - "height": 3451 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 33498, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479934+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479935+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479933+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 951 - }, - "imageDetail": { - "width": 3436, - "height": 3176 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70650, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479938+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479938+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479939+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479936+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 952 - }, - "imageDetail": { - "width": 2396, - "height": 3623 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 35220, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479942+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479942+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479943+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.447994+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 953 - }, - "imageDetail": { - "width": 3022, - "height": 8907 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 66300, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4479945+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479946+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479946+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479944+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 954 - }, - "imageDetail": { - "width": 2525, - "height": 8052 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80342, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479978+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479978+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4479979+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479948+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 955 - }, - "imageDetail": { - "width": 4563, - "height": 5280 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 33696, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4479982+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479983+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479981+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 956 - }, - "imageDetail": { - "width": 9398, - "height": 9128 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92450, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479986+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479986+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479984+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 957 - }, - "imageDetail": { - "width": 5838, - "height": 7771 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 24110, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4479989+00:00", - "fileLastModified": "2025-07-14T09:21:52.447999+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479988+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 958 - }, - "imageDetail": { - "width": 1564, - "height": 7941 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85217, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4479993+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479994+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479991+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 959 - }, - "imageDetail": { - "width": 6448, - "height": 3442 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70625, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4479997+00:00", - "fileLastModified": "2025-07-14T09:21:52.4479997+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479995+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 960 - }, - "imageDetail": { - "width": 7346, - "height": 8199 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 42038, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.448+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480001+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480001+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4479999+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 961 - }, - "imageDetail": { - "width": 3009, - "height": 4842 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 98089, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480004+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480005+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480005+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480003+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 962 - }, - "imageDetail": { - "width": 4373, - "height": 9540 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53902, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480008+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480009+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480006+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 963 - }, - "imageDetail": { - "width": 8579, - "height": 8380 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 20234, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480012+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480012+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.448001+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 964 - }, - "imageDetail": { - "width": 5071, - "height": 3996 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 94317, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480016+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480016+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480014+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 965 - }, - "imageDetail": { - "width": 9674, - "height": 3814 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 25650, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480019+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480019+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480017+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 966 - }, - "imageDetail": { - "width": 6832, - "height": 3065 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 26586, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4480022+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480023+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480024+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480021+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 967 - }, - "imageDetail": { - "width": 3961, - "height": 2411 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22655, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480027+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480027+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480028+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480025+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 968 - }, - "imageDetail": { - "width": 2326, - "height": 2533 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 62355, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480056+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480057+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 969 - }, - "imageDetail": { - "width": 4535, - "height": 5171 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 51291, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.448006+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480061+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480061+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480059+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 970 - }, - "imageDetail": { - "width": 8323, - "height": 4662 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 22218, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480064+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480065+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480065+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480063+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 971 - }, - "imageDetail": { - "width": 5531, - "height": 8986 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 60085, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480068+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480068+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480066+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 972 - }, - "imageDetail": { - "width": 5487, - "height": 5610 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 97642, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480072+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480072+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480073+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.448007+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 973 - }, - "imageDetail": { - "width": 1431, - "height": 3468 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 24522, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4480075+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480076+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480076+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480074+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 974 - }, - "imageDetail": { - "width": 2124, - "height": 4072 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 23905, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480079+00:00", - "fileLastModified": "2025-07-14T09:21:52.448008+00:00", - "fileLastViewed": "2025-07-14T09:21:52.448008+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480078+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 975 - }, - "imageDetail": { - "width": 519, - "height": 8657 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 55342, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480083+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480084+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480084+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480081+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 976 - }, - "imageDetail": { - "width": 1723, - "height": 3939 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 68669, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480087+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480087+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480088+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480085+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 977 - }, - "imageDetail": { - "width": 6239, - "height": 8019 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 62192, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480091+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480091+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480089+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 978 - }, - "imageDetail": { - "width": 112, - "height": 4198 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70960, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480094+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480095+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480093+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 979 - }, - "imageDetail": { - "width": 8077, - "height": 3032 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37929, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480098+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480098+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480099+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480096+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 980 - }, - "imageDetail": { - "width": 2401, - "height": 7132 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46873, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4480102+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480102+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480103+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.44801+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 981 - }, - "imageDetail": { - "width": 5010, - "height": 5124 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48977, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480106+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480106+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480104+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 982 - }, - "imageDetail": { - "width": 2251, - "height": 2089 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 89029, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480126+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480126+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480127+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480124+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 983 - }, - "imageDetail": { - "width": 1175, - "height": 2971 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76357, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.448013+00:00", - "fileLastModified": "2025-07-14T09:21:52.448013+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480128+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 984 - }, - "imageDetail": { - "width": 7980, - "height": 9894 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 26136, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480133+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480134+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480134+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480132+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 985 - }, - "imageDetail": { - "width": 3471, - "height": 6965 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 77748, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480137+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480137+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480135+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 986 - }, - "imageDetail": { - "width": 8107, - "height": 3526 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83491, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.448014+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480141+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480141+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480139+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 987 - }, - "imageDetail": { - "width": 8338, - "height": 8421 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 52737, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4480144+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480145+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480143+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 988 - }, - "imageDetail": { - "width": 8065, - "height": 5321 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27391, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480148+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480148+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480146+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 989 - }, - "imageDetail": { - "width": 9487, - "height": 6930 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 74014, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480151+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480152+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480152+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.448015+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 990 - }, - "imageDetail": { - "width": 5046, - "height": 9598 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 89524, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480155+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480156+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480156+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480154+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 991 - }, - "imageDetail": { - "width": 5046, - "height": 6764 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 56257, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480159+00:00", - "fileLastModified": "2025-07-14T09:21:52.448016+00:00", - "fileLastViewed": "2025-07-14T09:21:52.448016+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480158+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 992 - }, - "imageDetail": { - "width": 5965, - "height": 5809 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 25245, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480163+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480164+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480164+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480162+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 993 - }, - "imageDetail": { - "width": 119, - "height": 4139 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 89399, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480167+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480168+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480166+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 994 - }, - "imageDetail": { - "width": 2546, - "height": 8195 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 42340, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:21:52.4480171+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480171+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480169+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 995 - }, - "imageDetail": { - "width": 9232, - "height": 7464 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23564, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480275+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480275+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480272+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 996 - }, - "imageDetail": { - "width": 2527, - "height": 3021 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98293, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480279+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480279+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480277+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 997 - }, - "imageDetail": { - "width": 3669, - "height": 3834 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24960, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:21:52.4480282+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480283+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480281+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 998 - }, - "imageDetail": { - "width": 5058, - "height": 7438 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24595, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:21:52.4480286+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480286+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 999 - }, - "imageDetail": { - "width": 6337, - "height": 4345 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86511, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:21:52.4480289+00:00", - "fileLastModified": "2025-07-14T09:21:52.448029+00:00", - "fileLastViewed": "2025-07-14T09:21:52.448029+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480288+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1000 - }, - "imageDetail": { - "width": 9325, - "height": 8182 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34395, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:21:52.4480293+00:00", - "fileLastModified": "2025-07-14T09:21:52.4480294+00:00", - "fileLastViewed": "2025-07-14T09:21:52.4480294+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:21:52.4480292+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1001 - }, - "imageDetail": { - "width": 4556, - "height": 2735 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70536, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:30:58.5467016+00:00", - "fileLastModified": "2025-07-14T09:30:58.5468244+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:58.5458075+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1002 - }, - "imageDetail": { - "width": 4808, - "height": 3361 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92492, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:30:59.9888929+00:00", - "fileLastModified": "2025-07-14T09:30:59.9888935+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:59.9888896+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1003 - }, - "imageDetail": { - "width": 8189, - "height": 2366 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 21377, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:30:59.9939582+00:00", - "fileLastModified": "2025-07-14T09:30:59.9939586+00:00", - "fileLastViewed": "2025-07-14T09:30:59.9939587+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:59.9939564+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1004 - }, - "imageDetail": { - "width": 7388, - "height": 8353 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63796, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:30:59.9958338+00:00", - "fileLastModified": "2025-07-14T09:30:59.9958342+00:00", - "fileLastViewed": "2025-07-14T09:30:59.9958344+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:59.9958317+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1005 - }, - "imageDetail": { - "width": 7565, - "height": 3758 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32415, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:30:59.9973138+00:00", - "fileLastModified": "2025-07-14T09:30:59.9973141+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:59.9973122+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1006 - }, - "imageDetail": { - "width": 6406, - "height": 2173 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95562, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:30:59.9980958+00:00", - "fileLastModified": "2025-07-14T09:30:59.998096+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:59.9980948+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1007 - }, - "imageDetail": { - "width": 3865, - "height": 3912 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94121, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:30:59.9992021+00:00", - "fileLastModified": "2025-07-14T09:30:59.9992026+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:30:59.9991995+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1008 - }, - "imageDetail": { - "width": 6629, - "height": 9514 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 58711, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.001137+00:00", - "fileLastModified": "2025-07-14T09:31:00.0011374+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0011375+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0011356+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1009 - }, - "imageDetail": { - "width": 8514, - "height": 4173 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 58551, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0022985+00:00", - "fileLastModified": "2025-07-14T09:31:00.0022988+00:00", - "fileLastViewed": "2025-07-14T09:31:00.002299+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0022975+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1010 - }, - "imageDetail": { - "width": 8425, - "height": 3787 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 95346, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0031049+00:00", - "fileLastModified": "2025-07-14T09:31:00.0031052+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0031054+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0031037+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1011 - }, - "imageDetail": { - "width": 9457, - "height": 5430 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47501, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0039203+00:00", - "fileLastModified": "2025-07-14T09:31:00.0039205+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0039207+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0039192+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1012 - }, - "imageDetail": { - "width": 4511, - "height": 3543 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 76696, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0049828+00:00", - "fileLastModified": "2025-07-14T09:31:00.0049831+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0049817+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1013 - }, - "imageDetail": { - "width": 5616, - "height": 3992 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 67270, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0058364+00:00", - "fileLastModified": "2025-07-14T09:31:00.0058367+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0058369+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0058354+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1014 - }, - "imageDetail": { - "width": 4899, - "height": 6578 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80124, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0066703+00:00", - "fileLastModified": "2025-07-14T09:31:00.0066706+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0066707+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0066692+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1015 - }, - "imageDetail": { - "width": 1777, - "height": 6118 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 89714, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0075245+00:00", - "fileLastModified": "2025-07-14T09:31:00.0075248+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0075235+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1016 - }, - "imageDetail": { - "width": 6359, - "height": 7437 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 59160, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0085472+00:00", - "fileLastModified": "2025-07-14T09:31:00.0085474+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0085457+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1017 - }, - "imageDetail": { - "width": 1397, - "height": 9151 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 22392, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0094203+00:00", - "fileLastModified": "2025-07-14T09:31:00.0094206+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0094191+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1018 - }, - "imageDetail": { - "width": 6172, - "height": 4488 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 20556, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0102942+00:00", - "fileLastModified": "2025-07-14T09:31:00.0102945+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0102946+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0102932+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1019 - }, - "imageDetail": { - "width": 8574, - "height": 9790 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 49238, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0111694+00:00", - "fileLastModified": "2025-07-14T09:31:00.0111697+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0111684+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1020 - }, - "imageDetail": { - "width": 765, - "height": 7979 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 46236, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0123239+00:00", - "fileLastModified": "2025-07-14T09:31:00.0123242+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.012323+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1021 - }, - "imageDetail": { - "width": 3306, - "height": 2027 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72006, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0132146+00:00", - "fileLastModified": "2025-07-14T09:31:00.0132149+00:00", - "fileLastViewed": "2025-07-14T09:31:00.013215+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0132135+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1022 - }, - "imageDetail": { - "width": 1293, - "height": 9424 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 21291, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0141537+00:00", - "fileLastModified": "2025-07-14T09:31:00.014154+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0141541+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0141527+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1023 - }, - "imageDetail": { - "width": 8578, - "height": 4665 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68633, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0154821+00:00", - "fileLastModified": "2025-07-14T09:31:00.0154828+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0154766+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1024 - }, - "imageDetail": { - "width": 6787, - "height": 3785 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70815, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0180405+00:00", - "fileLastModified": "2025-07-14T09:31:00.0180413+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0180416+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0180365+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1025 - }, - "imageDetail": { - "width": 9219, - "height": 2768 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 54323, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0198061+00:00", - "fileLastModified": "2025-07-14T09:31:00.0198068+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0198072+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0198028+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1026 - }, - "imageDetail": { - "width": 1875, - "height": 6500 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 22174, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0213932+00:00", - "fileLastModified": "2025-07-14T09:31:00.0213938+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0213899+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1027 - }, - "imageDetail": { - "width": 9411, - "height": 6631 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 28526, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.023592+00:00", - "fileLastModified": "2025-07-14T09:31:00.0235925+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0235928+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0235887+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1028 - }, - "imageDetail": { - "width": 4340, - "height": 8381 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24991, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0253962+00:00", - "fileLastModified": "2025-07-14T09:31:00.0254108+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0253939+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1029 - }, - "imageDetail": { - "width": 7473, - "height": 4120 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 58163, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0272132+00:00", - "fileLastModified": "2025-07-14T09:31:00.0272137+00:00", - "fileLastViewed": "2025-07-14T09:31:00.027214+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.02721+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1030 - }, - "imageDetail": { - "width": 5706, - "height": 7051 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 72000, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0290013+00:00", - "fileLastModified": "2025-07-14T09:31:00.0290018+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0289984+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1031 - }, - "imageDetail": { - "width": 427, - "height": 7991 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44954, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0308119+00:00", - "fileLastModified": "2025-07-14T09:31:00.0308125+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0308078+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1032 - }, - "imageDetail": { - "width": 6875, - "height": 9578 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 77496, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0325523+00:00", - "fileLastModified": "2025-07-14T09:31:00.032553+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.03255+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1033 - }, - "imageDetail": { - "width": 4324, - "height": 4183 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 80475, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0339112+00:00", - "fileLastModified": "2025-07-14T09:31:00.0339116+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0339118+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0339079+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1034 - }, - "imageDetail": { - "width": 4346, - "height": 7088 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53661, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0353714+00:00", - "fileLastModified": "2025-07-14T09:31:00.0353719+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0353693+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1035 - }, - "imageDetail": { - "width": 5573, - "height": 8221 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 22057, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0368129+00:00", - "fileLastModified": "2025-07-14T09:31:00.0368134+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0368137+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.036809+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1036 - }, - "imageDetail": { - "width": 1410, - "height": 4426 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 99661, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0384123+00:00", - "fileLastModified": "2025-07-14T09:31:00.0384129+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0384131+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0384099+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1037 - }, - "imageDetail": { - "width": 7299, - "height": 5718 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89811, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0399648+00:00", - "fileLastModified": "2025-07-14T09:31:00.0399652+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0399626+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1038 - }, - "imageDetail": { - "width": 4123, - "height": 7373 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80828, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0413269+00:00", - "fileLastModified": "2025-07-14T09:31:00.0413274+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0413248+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1039 - }, - "imageDetail": { - "width": 8731, - "height": 3105 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 47507, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.042884+00:00", - "fileLastModified": "2025-07-14T09:31:00.0428844+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0428846+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.042882+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1040 - }, - "imageDetail": { - "width": 1569, - "height": 6792 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 50957, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0441284+00:00", - "fileLastModified": "2025-07-14T09:31:00.0441288+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0441267+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1041 - }, - "imageDetail": { - "width": 3164, - "height": 6434 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53462, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.045314+00:00", - "fileLastModified": "2025-07-14T09:31:00.0453144+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0453117+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1042 - }, - "imageDetail": { - "width": 4522, - "height": 7743 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 54298, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0471037+00:00", - "fileLastModified": "2025-07-14T09:31:00.0471042+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0471014+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1043 - }, - "imageDetail": { - "width": 206, - "height": 9769 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 49483, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0484079+00:00", - "fileLastModified": "2025-07-14T09:31:00.0484087+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0484088+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0484062+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1044 - }, - "imageDetail": { - "width": 497, - "height": 6626 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 29219, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0496537+00:00", - "fileLastModified": "2025-07-14T09:31:00.0496541+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0496542+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0496524+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1045 - }, - "imageDetail": { - "width": 9345, - "height": 8226 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 45107, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0510851+00:00", - "fileLastModified": "2025-07-14T09:31:00.0510855+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0510834+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1046 - }, - "imageDetail": { - "width": 2135, - "height": 9637 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 50004, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0522911+00:00", - "fileLastModified": "2025-07-14T09:31:00.0522914+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0522897+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1047 - }, - "imageDetail": { - "width": 517, - "height": 3218 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80073, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0534399+00:00", - "fileLastModified": "2025-07-14T09:31:00.0534403+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0534386+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1048 - }, - "imageDetail": { - "width": 6269, - "height": 8943 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 34867, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0549296+00:00", - "fileLastModified": "2025-07-14T09:31:00.05493+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0549301+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0549276+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1049 - }, - "imageDetail": { - "width": 1279, - "height": 8179 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89997, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0562024+00:00", - "fileLastModified": "2025-07-14T09:31:00.0562028+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0562029+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.056201+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1050 - }, - "imageDetail": { - "width": 7124, - "height": 8385 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70191, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0577627+00:00", - "fileLastModified": "2025-07-14T09:31:00.0577631+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0577632+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0577606+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1051 - }, - "imageDetail": { - "width": 1934, - "height": 8139 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 21051, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0598275+00:00", - "fileLastModified": "2025-07-14T09:31:00.0598279+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0598248+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1052 - }, - "imageDetail": { - "width": 5887, - "height": 6300 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 96534, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0614315+00:00", - "fileLastModified": "2025-07-14T09:31:00.0614319+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0614289+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1053 - }, - "imageDetail": { - "width": 7684, - "height": 5329 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74610, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0630541+00:00", - "fileLastModified": "2025-07-14T09:31:00.0630545+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0630509+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1054 - }, - "imageDetail": { - "width": 4185, - "height": 5675 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 29218, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0643772+00:00", - "fileLastModified": "2025-07-14T09:31:00.0643776+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0643755+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1055 - }, - "imageDetail": { - "width": 938, - "height": 9855 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32081, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0656925+00:00", - "fileLastModified": "2025-07-14T09:31:00.0656928+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0656909+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1056 - }, - "imageDetail": { - "width": 8438, - "height": 7953 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 28890, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0672829+00:00", - "fileLastModified": "2025-07-14T09:31:00.0672832+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0672815+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1057 - }, - "imageDetail": { - "width": 7923, - "height": 4731 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 28984, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.068702+00:00", - "fileLastModified": "2025-07-14T09:31:00.0687024+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0687025+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0687005+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1058 - }, - "imageDetail": { - "width": 3156, - "height": 3882 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95554, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0768322+00:00", - "fileLastModified": "2025-07-14T09:31:00.0768328+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0768332+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0768284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1059 - }, - "imageDetail": { - "width": 9994, - "height": 7051 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60982, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0790976+00:00", - "fileLastModified": "2025-07-14T09:31:00.0790981+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0790938+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1060 - }, - "imageDetail": { - "width": 9549, - "height": 3724 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64836, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0810017+00:00", - "fileLastModified": "2025-07-14T09:31:00.0810021+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0809997+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1061 - }, - "imageDetail": { - "width": 4839, - "height": 7613 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73554, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0823515+00:00", - "fileLastModified": "2025-07-14T09:31:00.0823518+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0823502+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1062 - }, - "imageDetail": { - "width": 9275, - "height": 7332 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 93112, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0839432+00:00", - "fileLastModified": "2025-07-14T09:31:00.0839435+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0839417+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1063 - }, - "imageDetail": { - "width": 8582, - "height": 5215 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96462, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0853283+00:00", - "fileLastModified": "2025-07-14T09:31:00.0853285+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0853287+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0853266+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1064 - }, - "imageDetail": { - "width": 574, - "height": 7545 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 51923, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0870625+00:00", - "fileLastModified": "2025-07-14T09:31:00.0870628+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0870608+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1065 - }, - "imageDetail": { - "width": 5113, - "height": 2048 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 52936, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0887119+00:00", - "fileLastModified": "2025-07-14T09:31:00.0887123+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0887099+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1066 - }, - "imageDetail": { - "width": 5392, - "height": 2597 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87364, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0900225+00:00", - "fileLastModified": "2025-07-14T09:31:00.0900228+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.090021+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1067 - }, - "imageDetail": { - "width": 5582, - "height": 6869 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 60116, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0918435+00:00", - "fileLastModified": "2025-07-14T09:31:00.0918439+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0918441+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.091842+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1068 - }, - "imageDetail": { - "width": 7031, - "height": 2668 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66092, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.0932571+00:00", - "fileLastModified": "2025-07-14T09:31:00.0932574+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0932576+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0932556+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1069 - }, - "imageDetail": { - "width": 4856, - "height": 6306 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 81886, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.0948902+00:00", - "fileLastModified": "2025-07-14T09:31:00.0948905+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0948906+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0948889+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1070 - }, - "imageDetail": { - "width": 5410, - "height": 9899 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 28306, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.0963047+00:00", - "fileLastModified": "2025-07-14T09:31:00.096305+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0963034+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1071 - }, - "imageDetail": { - "width": 8973, - "height": 3438 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 50347, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.0977608+00:00", - "fileLastModified": "2025-07-14T09:31:00.0977611+00:00", - "fileLastViewed": "2025-07-14T09:31:00.0977612+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0977595+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1072 - }, - "imageDetail": { - "width": 8044, - "height": 9884 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 64141, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.0994052+00:00", - "fileLastModified": "2025-07-14T09:31:00.0994056+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.0994038+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1073 - }, - "imageDetail": { - "width": 7975, - "height": 3031 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 36906, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.100825+00:00", - "fileLastModified": "2025-07-14T09:31:00.1008253+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1008255+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1008239+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1074 - }, - "imageDetail": { - "width": 1698, - "height": 7325 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94280, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1025834+00:00", - "fileLastModified": "2025-07-14T09:31:00.1025837+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1025816+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1075 - }, - "imageDetail": { - "width": 7616, - "height": 2313 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 33261, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1043598+00:00", - "fileLastModified": "2025-07-14T09:31:00.1043602+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1043607+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.104358+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1076 - }, - "imageDetail": { - "width": 8458, - "height": 7123 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91125, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.105956+00:00", - "fileLastModified": "2025-07-14T09:31:00.1059564+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1059567+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1059538+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1077 - }, - "imageDetail": { - "width": 6003, - "height": 4421 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64683, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1079109+00:00", - "fileLastModified": "2025-07-14T09:31:00.1079113+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1079086+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1078 - }, - "imageDetail": { - "width": 4595, - "height": 7154 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69808, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1097238+00:00", - "fileLastModified": "2025-07-14T09:31:00.1097242+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1097244+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1097221+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1079 - }, - "imageDetail": { - "width": 7907, - "height": 8918 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23366, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1111303+00:00", - "fileLastModified": "2025-07-14T09:31:00.1111306+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.111129+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1080 - }, - "imageDetail": { - "width": 5397, - "height": 2873 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 31695, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1128324+00:00", - "fileLastModified": "2025-07-14T09:31:00.1128327+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1128304+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1081 - }, - "imageDetail": { - "width": 5610, - "height": 4045 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 58138, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1142745+00:00", - "fileLastModified": "2025-07-14T09:31:00.1142747+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1142749+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1142729+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1082 - }, - "imageDetail": { - "width": 4551, - "height": 5542 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 32779, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1156734+00:00", - "fileLastModified": "2025-07-14T09:31:00.1156737+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1156739+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1156716+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1083 - }, - "imageDetail": { - "width": 5734, - "height": 6690 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46215, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1176111+00:00", - "fileLastModified": "2025-07-14T09:31:00.1176116+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1176087+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1084 - }, - "imageDetail": { - "width": 3330, - "height": 3065 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60649, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1194198+00:00", - "fileLastModified": "2025-07-14T09:31:00.1194202+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1194176+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1085 - }, - "imageDetail": { - "width": 6681, - "height": 6787 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70285, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1208485+00:00", - "fileLastModified": "2025-07-14T09:31:00.1208488+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1208471+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1086 - }, - "imageDetail": { - "width": 984, - "height": 7041 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60815, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1224639+00:00", - "fileLastModified": "2025-07-14T09:31:00.1224642+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1224625+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1087 - }, - "imageDetail": { - "width": 9435, - "height": 4003 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 97088, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1243925+00:00", - "fileLastModified": "2025-07-14T09:31:00.1243933+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1243904+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1088 - }, - "imageDetail": { - "width": 1728, - "height": 7075 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 33683, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1262508+00:00", - "fileLastModified": "2025-07-14T09:31:00.1262511+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1262514+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1262486+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1089 - }, - "imageDetail": { - "width": 6265, - "height": 4438 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 79432, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1280221+00:00", - "fileLastModified": "2025-07-14T09:31:00.1280224+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1280226+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1280203+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1090 - }, - "imageDetail": { - "width": 3129, - "height": 3001 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 26900, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1298587+00:00", - "fileLastModified": "2025-07-14T09:31:00.129859+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1298567+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1091 - }, - "imageDetail": { - "width": 6102, - "height": 8283 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 57428, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1313059+00:00", - "fileLastModified": "2025-07-14T09:31:00.1313062+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1313042+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1092 - }, - "imageDetail": { - "width": 2547, - "height": 4798 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 80266, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1330796+00:00", - "fileLastModified": "2025-07-14T09:31:00.1330799+00:00", - "fileLastViewed": "2025-07-14T09:31:00.13308+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.133078+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1093 - }, - "imageDetail": { - "width": 4830, - "height": 9454 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 36723, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1347925+00:00", - "fileLastModified": "2025-07-14T09:31:00.1347928+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1347929+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.134791+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1094 - }, - "imageDetail": { - "width": 9736, - "height": 2016 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91787, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1366642+00:00", - "fileLastModified": "2025-07-14T09:31:00.1366645+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1366625+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1095 - }, - "imageDetail": { - "width": 2697, - "height": 5828 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 37544, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1381134+00:00", - "fileLastModified": "2025-07-14T09:31:00.1381137+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1381138+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1381121+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1096 - }, - "imageDetail": { - "width": 3688, - "height": 9935 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37222, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1398001+00:00", - "fileLastModified": "2025-07-14T09:31:00.1398005+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1397981+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1097 - }, - "imageDetail": { - "width": 3772, - "height": 7655 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 87582, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1416069+00:00", - "fileLastModified": "2025-07-14T09:31:00.1416071+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1416055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1098 - }, - "imageDetail": { - "width": 690, - "height": 3778 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60106, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1431524+00:00", - "fileLastModified": "2025-07-14T09:31:00.1431527+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1431528+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1431513+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1099 - }, - "imageDetail": { - "width": 3148, - "height": 4561 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 37549, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1448353+00:00", - "fileLastModified": "2025-07-14T09:31:00.1448356+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1448357+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1448339+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1100 - }, - "imageDetail": { - "width": 9099, - "height": 4622 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 56279, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1478042+00:00", - "fileLastModified": "2025-07-14T09:31:00.1478045+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1478028+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1101 - }, - "imageDetail": { - "width": 699, - "height": 6692 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 26578, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1492717+00:00", - "fileLastModified": "2025-07-14T09:31:00.149272+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1492706+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1102 - }, - "imageDetail": { - "width": 3978, - "height": 8195 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70154, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1508769+00:00", - "fileLastModified": "2025-07-14T09:31:00.1508772+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1508757+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1103 - }, - "imageDetail": { - "width": 9340, - "height": 7342 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45430, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1523218+00:00", - "fileLastModified": "2025-07-14T09:31:00.1523221+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1523222+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1523208+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1104 - }, - "imageDetail": { - "width": 7046, - "height": 5824 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31679, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1541135+00:00", - "fileLastModified": "2025-07-14T09:31:00.1541138+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1541139+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1541121+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1105 - }, - "imageDetail": { - "width": 9801, - "height": 8371 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 53708, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.155968+00:00", - "fileLastModified": "2025-07-14T09:31:00.1559683+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1559684+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1559661+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1106 - }, - "imageDetail": { - "width": 2943, - "height": 9018 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 53840, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1574456+00:00", - "fileLastModified": "2025-07-14T09:31:00.1574459+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1574444+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1107 - }, - "imageDetail": { - "width": 7885, - "height": 5489 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38721, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1591828+00:00", - "fileLastModified": "2025-07-14T09:31:00.1591831+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1591816+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1108 - }, - "imageDetail": { - "width": 7186, - "height": 8412 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70801, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.16059+00:00", - "fileLastModified": "2025-07-14T09:31:00.1605904+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1605905+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1605889+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1109 - }, - "imageDetail": { - "width": 2837, - "height": 9875 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 69315, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1622093+00:00", - "fileLastModified": "2025-07-14T09:31:00.1622095+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1622097+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1622081+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1110 - }, - "imageDetail": { - "width": 6167, - "height": 9413 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 39718, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1635797+00:00", - "fileLastModified": "2025-07-14T09:31:00.1635799+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1635786+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1111 - }, - "imageDetail": { - "width": 1168, - "height": 6924 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79071, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1653005+00:00", - "fileLastModified": "2025-07-14T09:31:00.1653007+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1653009+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1652992+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1112 - }, - "imageDetail": { - "width": 5461, - "height": 6308 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87117, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1667772+00:00", - "fileLastModified": "2025-07-14T09:31:00.1667775+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1667776+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1667761+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1113 - }, - "imageDetail": { - "width": 4893, - "height": 6671 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 31812, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1684543+00:00", - "fileLastModified": "2025-07-14T09:31:00.1684546+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1684548+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1684531+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1114 - }, - "imageDetail": { - "width": 3708, - "height": 5587 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82906, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1702435+00:00", - "fileLastModified": "2025-07-14T09:31:00.1702439+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1702412+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1115 - }, - "imageDetail": { - "width": 2520, - "height": 9163 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 21484, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1720837+00:00", - "fileLastModified": "2025-07-14T09:31:00.172084+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1720842+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1720825+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1116 - }, - "imageDetail": { - "width": 1972, - "height": 8510 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 91548, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1737458+00:00", - "fileLastModified": "2025-07-14T09:31:00.1737461+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1737446+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1117 - }, - "imageDetail": { - "width": 2572, - "height": 9124 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29503, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1753858+00:00", - "fileLastModified": "2025-07-14T09:31:00.1753862+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1753863+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1753845+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1118 - }, - "imageDetail": { - "width": 2587, - "height": 6383 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60948, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1769328+00:00", - "fileLastModified": "2025-07-14T09:31:00.1769331+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1769317+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1119 - }, - "imageDetail": { - "width": 3667, - "height": 8245 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 97017, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1787328+00:00", - "fileLastModified": "2025-07-14T09:31:00.1787331+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1787332+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1787317+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1120 - }, - "imageDetail": { - "width": 9026, - "height": 7089 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77458, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1802904+00:00", - "fileLastModified": "2025-07-14T09:31:00.1802907+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1802893+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1121 - }, - "imageDetail": { - "width": 4208, - "height": 7026 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76961, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1820861+00:00", - "fileLastModified": "2025-07-14T09:31:00.1820864+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1820865+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.182085+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1122 - }, - "imageDetail": { - "width": 8149, - "height": 3663 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 29781, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.1836606+00:00", - "fileLastModified": "2025-07-14T09:31:00.183661+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1836611+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1836595+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1123 - }, - "imageDetail": { - "width": 7274, - "height": 9151 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55189, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1857624+00:00", - "fileLastModified": "2025-07-14T09:31:00.1857627+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1857629+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1857609+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1124 - }, - "imageDetail": { - "width": 8060, - "height": 4223 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 48140, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.1875137+00:00", - "fileLastModified": "2025-07-14T09:31:00.187514+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1875141+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1875121+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1125 - }, - "imageDetail": { - "width": 3127, - "height": 6592 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 42768, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1895407+00:00", - "fileLastModified": "2025-07-14T09:31:00.189541+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1895411+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1895394+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1126 - }, - "imageDetail": { - "width": 8916, - "height": 5590 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21208, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.191196+00:00", - "fileLastModified": "2025-07-14T09:31:00.1911963+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1911965+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1911949+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1127 - }, - "imageDetail": { - "width": 6411, - "height": 8345 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 36263, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.1931545+00:00", - "fileLastModified": "2025-07-14T09:31:00.1931549+00:00", - "fileLastViewed": "2025-07-14T09:31:00.193155+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1931533+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1128 - }, - "imageDetail": { - "width": 3374, - "height": 6137 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86704, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.194902+00:00", - "fileLastModified": "2025-07-14T09:31:00.1949023+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1949008+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1129 - }, - "imageDetail": { - "width": 9707, - "height": 5984 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 75334, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.1968832+00:00", - "fileLastModified": "2025-07-14T09:31:00.1968835+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1968837+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1968821+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1130 - }, - "imageDetail": { - "width": 9478, - "height": 9817 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88678, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.1985852+00:00", - "fileLastModified": "2025-07-14T09:31:00.1985855+00:00", - "fileLastViewed": "2025-07-14T09:31:00.1985856+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.1985841+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1131 - }, - "imageDetail": { - "width": 3227, - "height": 7716 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47775, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2007902+00:00", - "fileLastModified": "2025-07-14T09:31:00.2007905+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2007906+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2007887+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1132 - }, - "imageDetail": { - "width": 1270, - "height": 3328 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58165, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2073218+00:00", - "fileLastModified": "2025-07-14T09:31:00.2073221+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2073223+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2073193+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1133 - }, - "imageDetail": { - "width": 7512, - "height": 8615 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 74385, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.20913+00:00", - "fileLastModified": "2025-07-14T09:31:00.2091302+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2091289+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1134 - }, - "imageDetail": { - "width": 1503, - "height": 9527 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 42575, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.211147+00:00", - "fileLastModified": "2025-07-14T09:31:00.2111473+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2111452+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1135 - }, - "imageDetail": { - "width": 580, - "height": 2870 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88791, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.212869+00:00", - "fileLastModified": "2025-07-14T09:31:00.2128693+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2128695+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2128678+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1136 - }, - "imageDetail": { - "width": 2989, - "height": 3778 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 81112, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2148097+00:00", - "fileLastModified": "2025-07-14T09:31:00.21481+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2148101+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2148085+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1137 - }, - "imageDetail": { - "width": 7723, - "height": 9470 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 99314, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2287314+00:00", - "fileLastModified": "2025-07-14T09:31:00.2287319+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2287333+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.228728+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1138 - }, - "imageDetail": { - "width": 3780, - "height": 7138 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85153, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2316977+00:00", - "fileLastModified": "2025-07-14T09:31:00.2316993+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2316943+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1139 - }, - "imageDetail": { - "width": 8911, - "height": 7283 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 31005, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.2348121+00:00", - "fileLastModified": "2025-07-14T09:31:00.2348128+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2348131+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2348096+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1140 - }, - "imageDetail": { - "width": 8498, - "height": 7040 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64295, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.237086+00:00", - "fileLastModified": "2025-07-14T09:31:00.2370867+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2370869+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2370838+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1141 - }, - "imageDetail": { - "width": 3391, - "height": 5777 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 72157, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.2390863+00:00", - "fileLastModified": "2025-07-14T09:31:00.2390867+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2390868+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.239085+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1142 - }, - "imageDetail": { - "width": 2453, - "height": 7378 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60795, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2412721+00:00", - "fileLastModified": "2025-07-14T09:31:00.2412724+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2412726+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2412706+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1143 - }, - "imageDetail": { - "width": 4515, - "height": 3957 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38703, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2433419+00:00", - "fileLastModified": "2025-07-14T09:31:00.2433423+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2433425+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2433393+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1144 - }, - "imageDetail": { - "width": 1344, - "height": 7337 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 68196, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2452855+00:00", - "fileLastModified": "2025-07-14T09:31:00.2452858+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2452835+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1145 - }, - "imageDetail": { - "width": 6845, - "height": 7693 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23900, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.247775+00:00", - "fileLastModified": "2025-07-14T09:31:00.2477754+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2477756+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2477728+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1146 - }, - "imageDetail": { - "width": 2528, - "height": 9738 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 21289, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.249669+00:00", - "fileLastModified": "2025-07-14T09:31:00.2496693+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2496666+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1147 - }, - "imageDetail": { - "width": 2285, - "height": 9219 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23997, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.2518434+00:00", - "fileLastModified": "2025-07-14T09:31:00.2518437+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2518417+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1148 - }, - "imageDetail": { - "width": 8902, - "height": 4716 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 35727, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.254016+00:00", - "fileLastModified": "2025-07-14T09:31:00.2540172+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2540173+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2540144+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1149 - }, - "imageDetail": { - "width": 8908, - "height": 5188 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 27586, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2559271+00:00", - "fileLastModified": "2025-07-14T09:31:00.2559274+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2559257+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1150 - }, - "imageDetail": { - "width": 3222, - "height": 9631 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 50888, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.2580797+00:00", - "fileLastModified": "2025-07-14T09:31:00.2580801+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2580802+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2580783+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1151 - }, - "imageDetail": { - "width": 7480, - "height": 5760 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77917, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.2601132+00:00", - "fileLastModified": "2025-07-14T09:31:00.2601136+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2601137+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2601108+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1152 - }, - "imageDetail": { - "width": 4788, - "height": 6441 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 25503, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2624904+00:00", - "fileLastModified": "2025-07-14T09:31:00.2624907+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2624888+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1153 - }, - "imageDetail": { - "width": 1213, - "height": 3404 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 34099, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.2647034+00:00", - "fileLastModified": "2025-07-14T09:31:00.2647038+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2647041+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2647012+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1154 - }, - "imageDetail": { - "width": 4266, - "height": 9281 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70608, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2666982+00:00", - "fileLastModified": "2025-07-14T09:31:00.2666985+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2666969+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1155 - }, - "imageDetail": { - "width": 4301, - "height": 2949 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 30475, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.268814+00:00", - "fileLastModified": "2025-07-14T09:31:00.2688143+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2688125+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1156 - }, - "imageDetail": { - "width": 9342, - "height": 5284 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85908, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2707156+00:00", - "fileLastModified": "2025-07-14T09:31:00.270716+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2707161+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2707144+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1157 - }, - "imageDetail": { - "width": 9518, - "height": 5200 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 60211, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.272769+00:00", - "fileLastModified": "2025-07-14T09:31:00.2727693+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2727672+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1158 - }, - "imageDetail": { - "width": 162, - "height": 7881 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 57963, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2748813+00:00", - "fileLastModified": "2025-07-14T09:31:00.274882+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2748821+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2748796+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1159 - }, - "imageDetail": { - "width": 8088, - "height": 3623 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22667, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.2774965+00:00", - "fileLastModified": "2025-07-14T09:31:00.2774968+00:00", - "fileLastViewed": "2025-07-14T09:31:00.277497+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2774952+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1160 - }, - "imageDetail": { - "width": 6876, - "height": 7266 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 86132, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.2797476+00:00", - "fileLastModified": "2025-07-14T09:31:00.2797479+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2797455+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1161 - }, - "imageDetail": { - "width": 9141, - "height": 3713 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43720, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2818163+00:00", - "fileLastModified": "2025-07-14T09:31:00.2818166+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2818148+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1162 - }, - "imageDetail": { - "width": 5474, - "height": 7273 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 23034, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.283664+00:00", - "fileLastModified": "2025-07-14T09:31:00.2836644+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2836628+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1163 - }, - "imageDetail": { - "width": 9924, - "height": 4129 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 90135, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.2857253+00:00", - "fileLastModified": "2025-07-14T09:31:00.2857257+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2857235+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1164 - }, - "imageDetail": { - "width": 222, - "height": 9313 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 72353, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2880276+00:00", - "fileLastModified": "2025-07-14T09:31:00.288028+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2880281+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2880255+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1165 - }, - "imageDetail": { - "width": 7298, - "height": 6363 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 38408, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.2901087+00:00", - "fileLastModified": "2025-07-14T09:31:00.2901092+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2901093+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.290107+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1166 - }, - "imageDetail": { - "width": 6897, - "height": 7819 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 90457, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2925971+00:00", - "fileLastModified": "2025-07-14T09:31:00.2925981+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2925945+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1167 - }, - "imageDetail": { - "width": 6772, - "height": 9873 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92642, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.2953375+00:00", - "fileLastModified": "2025-07-14T09:31:00.2953381+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2953346+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1168 - }, - "imageDetail": { - "width": 3020, - "height": 8219 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 68443, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.2978185+00:00", - "fileLastModified": "2025-07-14T09:31:00.2978189+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2978191+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2978167+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1169 - }, - "imageDetail": { - "width": 9804, - "height": 5309 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 67592, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.2998239+00:00", - "fileLastModified": "2025-07-14T09:31:00.2998243+00:00", - "fileLastViewed": "2025-07-14T09:31:00.2998244+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.2998227+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1170 - }, - "imageDetail": { - "width": 5513, - "height": 7333 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 76264, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3020941+00:00", - "fileLastModified": "2025-07-14T09:31:00.3020945+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3020927+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1171 - }, - "imageDetail": { - "width": 7934, - "height": 2994 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89248, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3042249+00:00", - "fileLastModified": "2025-07-14T09:31:00.3042256+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3040485+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1172 - }, - "imageDetail": { - "width": 4717, - "height": 6520 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69600, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3062531+00:00", - "fileLastModified": "2025-07-14T09:31:00.3062534+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3062519+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1173 - }, - "imageDetail": { - "width": 6486, - "height": 5620 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 61702, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3083941+00:00", - "fileLastModified": "2025-07-14T09:31:00.3083943+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3083928+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1174 - }, - "imageDetail": { - "width": 6332, - "height": 8057 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 29468, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3107674+00:00", - "fileLastModified": "2025-07-14T09:31:00.3107677+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3107678+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3107644+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1175 - }, - "imageDetail": { - "width": 3064, - "height": 4110 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 71525, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3131363+00:00", - "fileLastModified": "2025-07-14T09:31:00.3131366+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3131367+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3131349+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1176 - }, - "imageDetail": { - "width": 8687, - "height": 3635 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 33914, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.3155042+00:00", - "fileLastModified": "2025-07-14T09:31:00.3155045+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3155047+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3155025+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1177 - }, - "imageDetail": { - "width": 729, - "height": 8925 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 42451, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3175252+00:00", - "fileLastModified": "2025-07-14T09:31:00.3175255+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3175257+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3175238+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1178 - }, - "imageDetail": { - "width": 6826, - "height": 9023 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 25603, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.319731+00:00", - "fileLastModified": "2025-07-14T09:31:00.3197313+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3197315+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3197285+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1179 - }, - "imageDetail": { - "width": 6702, - "height": 9579 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 40121, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3219397+00:00", - "fileLastModified": "2025-07-14T09:31:00.32194+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3219383+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1180 - }, - "imageDetail": { - "width": 1965, - "height": 8775 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60270, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3241287+00:00", - "fileLastModified": "2025-07-14T09:31:00.324129+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3241275+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1181 - }, - "imageDetail": { - "width": 3938, - "height": 8456 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 48113, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3265368+00:00", - "fileLastModified": "2025-07-14T09:31:00.3265371+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3265373+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3265348+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1182 - }, - "imageDetail": { - "width": 1907, - "height": 9292 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31727, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3289821+00:00", - "fileLastModified": "2025-07-14T09:31:00.3289824+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3289799+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1183 - }, - "imageDetail": { - "width": 3841, - "height": 8697 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 27477, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.3315379+00:00", - "fileLastModified": "2025-07-14T09:31:00.3315382+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3315384+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3315364+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1184 - }, - "imageDetail": { - "width": 6464, - "height": 6798 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 43335, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3338751+00:00", - "fileLastModified": "2025-07-14T09:31:00.3338754+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3338756+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3338733+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1185 - }, - "imageDetail": { - "width": 2114, - "height": 2826 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 92721, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3364235+00:00", - "fileLastModified": "2025-07-14T09:31:00.3364238+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3364239+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.336422+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1186 - }, - "imageDetail": { - "width": 3279, - "height": 3358 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65762, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3390188+00:00", - "fileLastModified": "2025-07-14T09:31:00.3390192+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3390194+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.339017+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1187 - }, - "imageDetail": { - "width": 7869, - "height": 6283 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24353, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.341686+00:00", - "fileLastModified": "2025-07-14T09:31:00.3416864+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3416836+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1188 - }, - "imageDetail": { - "width": 7336, - "height": 2616 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92826, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3441774+00:00", - "fileLastModified": "2025-07-14T09:31:00.3441778+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3441779+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3441753+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1189 - }, - "imageDetail": { - "width": 8599, - "height": 6872 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 75968, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3467+00:00", - "fileLastModified": "2025-07-14T09:31:00.3467003+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3466982+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1190 - }, - "imageDetail": { - "width": 8055, - "height": 2143 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 49815, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.350004+00:00", - "fileLastModified": "2025-07-14T09:31:00.3500043+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3500046+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3500013+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1191 - }, - "imageDetail": { - "width": 4039, - "height": 6005 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 55545, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.352809+00:00", - "fileLastModified": "2025-07-14T09:31:00.3528094+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3528097+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3528065+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1192 - }, - "imageDetail": { - "width": 3070, - "height": 8050 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 64227, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3552572+00:00", - "fileLastModified": "2025-07-14T09:31:00.3552576+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3552553+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1193 - }, - "imageDetail": { - "width": 2136, - "height": 4029 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95455, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3590068+00:00", - "fileLastModified": "2025-07-14T09:31:00.3590072+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3590044+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1194 - }, - "imageDetail": { - "width": 7925, - "height": 5388 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 81506, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3616475+00:00", - "fileLastModified": "2025-07-14T09:31:00.3616478+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3616296+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1195 - }, - "imageDetail": { - "width": 6164, - "height": 7151 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 62523, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3640579+00:00", - "fileLastModified": "2025-07-14T09:31:00.3640582+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3640558+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1196 - }, - "imageDetail": { - "width": 7397, - "height": 3589 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61304, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3664298+00:00", - "fileLastModified": "2025-07-14T09:31:00.3664302+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3664303+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3664277+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1197 - }, - "imageDetail": { - "width": 3208, - "height": 5043 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 98041, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.3688505+00:00", - "fileLastModified": "2025-07-14T09:31:00.3688509+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3688485+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1198 - }, - "imageDetail": { - "width": 7987, - "height": 5666 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57995, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3711906+00:00", - "fileLastModified": "2025-07-14T09:31:00.371191+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3711886+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1199 - }, - "imageDetail": { - "width": 9747, - "height": 9055 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76627, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3737665+00:00", - "fileLastModified": "2025-07-14T09:31:00.3737669+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3737646+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1200 - }, - "imageDetail": { - "width": 7426, - "height": 5555 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 51334, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3762999+00:00", - "fileLastModified": "2025-07-14T09:31:00.3763003+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3763004+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3762975+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1201 - }, - "imageDetail": { - "width": 8656, - "height": 4321 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 47160, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3785424+00:00", - "fileLastModified": "2025-07-14T09:31:00.3785427+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3785428+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3785405+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1202 - }, - "imageDetail": { - "width": 1301, - "height": 7138 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53338, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.381288+00:00", - "fileLastModified": "2025-07-14T09:31:00.3812887+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3812889+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.381286+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1203 - }, - "imageDetail": { - "width": 8850, - "height": 4867 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 58600, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3838152+00:00", - "fileLastModified": "2025-07-14T09:31:00.3838155+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3838157+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3838136+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1204 - }, - "imageDetail": { - "width": 9331, - "height": 6730 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 26782, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.387352+00:00", - "fileLastModified": "2025-07-14T09:31:00.3873527+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3873499+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1205 - }, - "imageDetail": { - "width": 6102, - "height": 8417 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 91337, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.3898034+00:00", - "fileLastModified": "2025-07-14T09:31:00.3898037+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3898018+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1206 - }, - "imageDetail": { - "width": 1220, - "height": 8129 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90399, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3922744+00:00", - "fileLastModified": "2025-07-14T09:31:00.3922746+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3922748+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3922729+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1207 - }, - "imageDetail": { - "width": 5026, - "height": 8231 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86877, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.3946418+00:00", - "fileLastModified": "2025-07-14T09:31:00.394642+00:00", - "fileLastViewed": "2025-07-14T09:31:00.3946422+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3946406+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1208 - }, - "imageDetail": { - "width": 2213, - "height": 5405 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 52855, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.3967591+00:00", - "fileLastModified": "2025-07-14T09:31:00.3967594+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.396758+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1209 - }, - "imageDetail": { - "width": 9441, - "height": 9144 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 56179, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.3992679+00:00", - "fileLastModified": "2025-07-14T09:31:00.3992682+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.3992665+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1210 - }, - "imageDetail": { - "width": 9784, - "height": 5686 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60307, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.401938+00:00", - "fileLastModified": "2025-07-14T09:31:00.4019383+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4019386+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4019365+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1211 - }, - "imageDetail": { - "width": 4970, - "height": 4607 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 84313, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.4044598+00:00", - "fileLastModified": "2025-07-14T09:31:00.4044601+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.404458+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1212 - }, - "imageDetail": { - "width": 4124, - "height": 8844 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47444, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4067231+00:00", - "fileLastModified": "2025-07-14T09:31:00.4067233+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4067235+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4067219+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1213 - }, - "imageDetail": { - "width": 7823, - "height": 6230 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96541, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4092417+00:00", - "fileLastModified": "2025-07-14T09:31:00.4092421+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4092422+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4092402+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1214 - }, - "imageDetail": { - "width": 7141, - "height": 9503 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27065, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4117373+00:00", - "fileLastModified": "2025-07-14T09:31:00.4117376+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4117377+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4117355+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1215 - }, - "imageDetail": { - "width": 6925, - "height": 3136 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 72118, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.414161+00:00", - "fileLastModified": "2025-07-14T09:31:00.4141614+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4141615+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4141593+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1216 - }, - "imageDetail": { - "width": 2713, - "height": 6313 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28092, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4165699+00:00", - "fileLastModified": "2025-07-14T09:31:00.4165702+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4165686+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1217 - }, - "imageDetail": { - "width": 3128, - "height": 7080 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 88140, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4189252+00:00", - "fileLastModified": "2025-07-14T09:31:00.4189255+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4189237+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1218 - }, - "imageDetail": { - "width": 1942, - "height": 4765 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 33290, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.4214407+00:00", - "fileLastModified": "2025-07-14T09:31:00.4214409+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4214388+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1219 - }, - "imageDetail": { - "width": 1431, - "height": 5904 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 69560, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4238521+00:00", - "fileLastModified": "2025-07-14T09:31:00.4238524+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4238526+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4238509+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1220 - }, - "imageDetail": { - "width": 9663, - "height": 5677 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 45309, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.4259553+00:00", - "fileLastModified": "2025-07-14T09:31:00.4259556+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4259557+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4259542+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1221 - }, - "imageDetail": { - "width": 7130, - "height": 6861 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59500, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4283515+00:00", - "fileLastModified": "2025-07-14T09:31:00.4283517+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4283503+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1222 - }, - "imageDetail": { - "width": 1173, - "height": 5031 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 55128, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4310352+00:00", - "fileLastModified": "2025-07-14T09:31:00.4310355+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4310356+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4310335+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1223 - }, - "imageDetail": { - "width": 9362, - "height": 9293 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 84920, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4338826+00:00", - "fileLastModified": "2025-07-14T09:31:00.433883+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4338808+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1224 - }, - "imageDetail": { - "width": 4626, - "height": 9172 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 71821, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4365825+00:00", - "fileLastModified": "2025-07-14T09:31:00.4365828+00:00", - "fileLastViewed": "2025-07-14T09:31:00.436583+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.436581+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1225 - }, - "imageDetail": { - "width": 1447, - "height": 5897 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 78038, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.4391038+00:00", - "fileLastModified": "2025-07-14T09:31:00.4391042+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4391024+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1226 - }, - "imageDetail": { - "width": 483, - "height": 2338 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95371, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4416149+00:00", - "fileLastModified": "2025-07-14T09:31:00.4416151+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4416153+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4416134+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1227 - }, - "imageDetail": { - "width": 2240, - "height": 4700 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 73622, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4440254+00:00", - "fileLastModified": "2025-07-14T09:31:00.4440257+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4440241+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1228 - }, - "imageDetail": { - "width": 5706, - "height": 6250 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 59117, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4461965+00:00", - "fileLastModified": "2025-07-14T09:31:00.4461968+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4461969+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4461955+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1229 - }, - "imageDetail": { - "width": 4113, - "height": 4026 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77463, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4492007+00:00", - "fileLastModified": "2025-07-14T09:31:00.449201+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4491989+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1230 - }, - "imageDetail": { - "width": 9312, - "height": 5591 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 94205, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.4523671+00:00", - "fileLastModified": "2025-07-14T09:31:00.4523674+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4523646+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1231 - }, - "imageDetail": { - "width": 4021, - "height": 6914 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 48107, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4550677+00:00", - "fileLastModified": "2025-07-14T09:31:00.455068+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4550663+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1232 - }, - "imageDetail": { - "width": 3973, - "height": 8286 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87933, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.4574349+00:00", - "fileLastModified": "2025-07-14T09:31:00.4574353+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4574339+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1233 - }, - "imageDetail": { - "width": 5761, - "height": 6881 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 40242, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.460026+00:00", - "fileLastModified": "2025-07-14T09:31:00.4600263+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4600246+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1234 - }, - "imageDetail": { - "width": 3891, - "height": 2281 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 78869, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4625478+00:00", - "fileLastModified": "2025-07-14T09:31:00.4625481+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4625465+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1235 - }, - "imageDetail": { - "width": 7869, - "height": 6974 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 43261, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.4656233+00:00", - "fileLastModified": "2025-07-14T09:31:00.4656237+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4656238+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.465621+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1236 - }, - "imageDetail": { - "width": 7239, - "height": 8944 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 29282, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4681146+00:00", - "fileLastModified": "2025-07-14T09:31:00.4681149+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.468113+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1237 - }, - "imageDetail": { - "width": 9347, - "height": 6805 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 66539, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4706842+00:00", - "fileLastModified": "2025-07-14T09:31:00.4706845+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.470683+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1238 - }, - "imageDetail": { - "width": 7129, - "height": 2796 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58260, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4731341+00:00", - "fileLastModified": "2025-07-14T09:31:00.4731344+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4731326+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1239 - }, - "imageDetail": { - "width": 8319, - "height": 9474 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 40021, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.475619+00:00", - "fileLastModified": "2025-07-14T09:31:00.4756193+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4756194+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4756173+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1240 - }, - "imageDetail": { - "width": 4144, - "height": 2485 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 46068, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.477878+00:00", - "fileLastModified": "2025-07-14T09:31:00.4778783+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4778785+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.477877+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1241 - }, - "imageDetail": { - "width": 3687, - "height": 4638 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77021, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4808133+00:00", - "fileLastModified": "2025-07-14T09:31:00.4808137+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4808138+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4808116+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1242 - }, - "imageDetail": { - "width": 9321, - "height": 3663 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74128, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4837719+00:00", - "fileLastModified": "2025-07-14T09:31:00.4837722+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4837724+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4837704+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1243 - }, - "imageDetail": { - "width": 2993, - "height": 6225 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 65370, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4863009+00:00", - "fileLastModified": "2025-07-14T09:31:00.4863012+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4862998+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1244 - }, - "imageDetail": { - "width": 9465, - "height": 8374 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73535, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.4887704+00:00", - "fileLastModified": "2025-07-14T09:31:00.4887706+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4887692+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1245 - }, - "imageDetail": { - "width": 7127, - "height": 5973 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 55942, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.4913394+00:00", - "fileLastModified": "2025-07-14T09:31:00.4913397+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4913381+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1246 - }, - "imageDetail": { - "width": 7279, - "height": 7706 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 75678, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.4939858+00:00", - "fileLastModified": "2025-07-14T09:31:00.4939861+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4939862+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4939844+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1247 - }, - "imageDetail": { - "width": 5064, - "height": 9770 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 27702, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.4969608+00:00", - "fileLastModified": "2025-07-14T09:31:00.4969612+00:00", - "fileLastViewed": "2025-07-14T09:31:00.4969614+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4969592+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1248 - }, - "imageDetail": { - "width": 7599, - "height": 9311 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46704, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.4997544+00:00", - "fileLastModified": "2025-07-14T09:31:00.4997548+00:00", - "fileLastViewed": "2025-07-14T09:31:00.499755+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.4997519+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1249 - }, - "imageDetail": { - "width": 7109, - "height": 6831 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77070, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.5026299+00:00", - "fileLastModified": "2025-07-14T09:31:00.5026303+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5026305+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5026278+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1250 - }, - "imageDetail": { - "width": 1763, - "height": 7165 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 74061, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.5053469+00:00", - "fileLastModified": "2025-07-14T09:31:00.5053473+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5053449+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1251 - }, - "imageDetail": { - "width": 3361, - "height": 9725 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33220, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5082181+00:00", - "fileLastModified": "2025-07-14T09:31:00.5082185+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5082161+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1252 - }, - "imageDetail": { - "width": 2890, - "height": 5202 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 33737, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5110208+00:00", - "fileLastModified": "2025-07-14T09:31:00.5110211+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5110213+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.511019+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1253 - }, - "imageDetail": { - "width": 1218, - "height": 2001 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 95338, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.5142178+00:00", - "fileLastModified": "2025-07-14T09:31:00.5142183+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5142185+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5142156+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1254 - }, - "imageDetail": { - "width": 104, - "height": 7802 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 79321, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5168832+00:00", - "fileLastModified": "2025-07-14T09:31:00.5168835+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.516881+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1255 - }, - "imageDetail": { - "width": 9294, - "height": 4984 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 29298, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.5198008+00:00", - "fileLastModified": "2025-07-14T09:31:00.5198011+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5198012+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5197983+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1256 - }, - "imageDetail": { - "width": 690, - "height": 4465 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91666, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5227508+00:00", - "fileLastModified": "2025-07-14T09:31:00.5227512+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5227516+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5227489+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1257 - }, - "imageDetail": { - "width": 4808, - "height": 6935 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53140, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5261084+00:00", - "fileLastModified": "2025-07-14T09:31:00.5261087+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5261054+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1258 - }, - "imageDetail": { - "width": 5186, - "height": 2007 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 81172, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5295831+00:00", - "fileLastModified": "2025-07-14T09:31:00.5295835+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5295804+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1259 - }, - "imageDetail": { - "width": 7432, - "height": 4574 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55334, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.5329638+00:00", - "fileLastModified": "2025-07-14T09:31:00.5329642+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5329617+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1260 - }, - "imageDetail": { - "width": 8672, - "height": 8860 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 21536, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.5357894+00:00", - "fileLastModified": "2025-07-14T09:31:00.5357902+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5357875+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1261 - }, - "imageDetail": { - "width": 4155, - "height": 9689 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 40134, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.538682+00:00", - "fileLastModified": "2025-07-14T09:31:00.5386823+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5386801+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1262 - }, - "imageDetail": { - "width": 699, - "height": 7925 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28300, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5413561+00:00", - "fileLastModified": "2025-07-14T09:31:00.5413564+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5413566+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5413547+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1263 - }, - "imageDetail": { - "width": 4114, - "height": 9233 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 52651, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5452862+00:00", - "fileLastModified": "2025-07-14T09:31:00.5452866+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5452836+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1264 - }, - "imageDetail": { - "width": 8423, - "height": 4794 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73977, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5487745+00:00", - "fileLastModified": "2025-07-14T09:31:00.5487749+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5487719+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1265 - }, - "imageDetail": { - "width": 2798, - "height": 3918 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87706, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.5519965+00:00", - "fileLastModified": "2025-07-14T09:31:00.5519969+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5519944+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1266 - }, - "imageDetail": { - "width": 5270, - "height": 8424 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86289, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5548568+00:00", - "fileLastModified": "2025-07-14T09:31:00.5548571+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5548574+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5548552+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1267 - }, - "imageDetail": { - "width": 4260, - "height": 8796 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 92511, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.5582336+00:00", - "fileLastModified": "2025-07-14T09:31:00.558234+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5582343+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.558203+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1268 - }, - "imageDetail": { - "width": 906, - "height": 9369 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 48413, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5614614+00:00", - "fileLastModified": "2025-07-14T09:31:00.5614618+00:00", - "fileLastViewed": "2025-07-14T09:31:00.561462+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.561459+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1269 - }, - "imageDetail": { - "width": 995, - "height": 8999 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98033, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5645581+00:00", - "fileLastModified": "2025-07-14T09:31:00.5645585+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5645588+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.564556+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1270 - }, - "imageDetail": { - "width": 2057, - "height": 3023 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 62475, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.5672507+00:00", - "fileLastModified": "2025-07-14T09:31:00.5672509+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5672511+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.567249+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1271 - }, - "imageDetail": { - "width": 8881, - "height": 5086 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76554, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.5702412+00:00", - "fileLastModified": "2025-07-14T09:31:00.5702416+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.570239+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1272 - }, - "imageDetail": { - "width": 299, - "height": 7490 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70096, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5730917+00:00", - "fileLastModified": "2025-07-14T09:31:00.5730921+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5730898+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1273 - }, - "imageDetail": { - "width": 9865, - "height": 2592 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96323, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.576561+00:00", - "fileLastModified": "2025-07-14T09:31:00.5765615+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5765617+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5765587+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1274 - }, - "imageDetail": { - "width": 259, - "height": 4701 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 25851, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.5804079+00:00", - "fileLastModified": "2025-07-14T09:31:00.5804082+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5804055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1275 - }, - "imageDetail": { - "width": 3107, - "height": 5280 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 46707, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.5843961+00:00", - "fileLastModified": "2025-07-14T09:31:00.5843966+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5843969+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5843941+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1276 - }, - "imageDetail": { - "width": 3593, - "height": 6356 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35962, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.5883606+00:00", - "fileLastModified": "2025-07-14T09:31:00.588361+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.588358+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1277 - }, - "imageDetail": { - "width": 3263, - "height": 7008 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73522, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.5927028+00:00", - "fileLastModified": "2025-07-14T09:31:00.5927035+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5927007+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1278 - }, - "imageDetail": { - "width": 4538, - "height": 7808 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 87963, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.5961446+00:00", - "fileLastModified": "2025-07-14T09:31:00.596145+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5961426+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1279 - }, - "imageDetail": { - "width": 1389, - "height": 9509 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95722, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.5996408+00:00", - "fileLastModified": "2025-07-14T09:31:00.5996412+00:00", - "fileLastViewed": "2025-07-14T09:31:00.5996414+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.5996389+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1280 - }, - "imageDetail": { - "width": 8395, - "height": 9408 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 51101, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.6033373+00:00", - "fileLastModified": "2025-07-14T09:31:00.6033377+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6033351+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1281 - }, - "imageDetail": { - "width": 5497, - "height": 3204 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 78261, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.6080225+00:00", - "fileLastModified": "2025-07-14T09:31:00.6080229+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6080202+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1282 - }, - "imageDetail": { - "width": 5036, - "height": 9084 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53707, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.6115827+00:00", - "fileLastModified": "2025-07-14T09:31:00.6115834+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6115836+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6115806+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1283 - }, - "imageDetail": { - "width": 8655, - "height": 5536 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 58704, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.6151167+00:00", - "fileLastModified": "2025-07-14T09:31:00.6151171+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6151173+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6151145+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1284 - }, - "imageDetail": { - "width": 7165, - "height": 9291 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34225, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.618595+00:00", - "fileLastModified": "2025-07-14T09:31:00.6185955+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6185932+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1285 - }, - "imageDetail": { - "width": 9980, - "height": 8531 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 54173, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.6226747+00:00", - "fileLastModified": "2025-07-14T09:31:00.6226751+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6226727+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1286 - }, - "imageDetail": { - "width": 666, - "height": 7929 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 99223, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.6264606+00:00", - "fileLastModified": "2025-07-14T09:31:00.626461+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6264612+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6264582+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1287 - }, - "imageDetail": { - "width": 511, - "height": 8313 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 62004, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.6299448+00:00", - "fileLastModified": "2025-07-14T09:31:00.6299452+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6299454+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.629942+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1288 - }, - "imageDetail": { - "width": 8079, - "height": 2348 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 22839, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.633376+00:00", - "fileLastModified": "2025-07-14T09:31:00.6333763+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6333742+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1289 - }, - "imageDetail": { - "width": 9091, - "height": 2322 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 25283, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.6400075+00:00", - "fileLastModified": "2025-07-14T09:31:00.6400079+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6400055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1290 - }, - "imageDetail": { - "width": 6412, - "height": 2581 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60752, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.6478951+00:00", - "fileLastModified": "2025-07-14T09:31:00.6478956+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6478958+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6478909+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1291 - }, - "imageDetail": { - "width": 6363, - "height": 9690 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96813, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.6550236+00:00", - "fileLastModified": "2025-07-14T09:31:00.655024+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6550246+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6550215+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1292 - }, - "imageDetail": { - "width": 2549, - "height": 4670 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21250, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.6614244+00:00", - "fileLastModified": "2025-07-14T09:31:00.6614248+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6614201+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1293 - }, - "imageDetail": { - "width": 8910, - "height": 8894 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75377, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.6685559+00:00", - "fileLastModified": "2025-07-14T09:31:00.6685563+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6685569+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6685259+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1294 - }, - "imageDetail": { - "width": 1233, - "height": 8680 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 51636, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.6750232+00:00", - "fileLastModified": "2025-07-14T09:31:00.6750237+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6750238+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6750208+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1295 - }, - "imageDetail": { - "width": 2026, - "height": 9374 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46421, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.6811408+00:00", - "fileLastModified": "2025-07-14T09:31:00.6811412+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6811378+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1296 - }, - "imageDetail": { - "width": 5759, - "height": 3635 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68424, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.687395+00:00", - "fileLastModified": "2025-07-14T09:31:00.6873954+00:00", - "fileLastViewed": "2025-07-14T09:31:00.6873956+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6873927+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1297 - }, - "imageDetail": { - "width": 2706, - "height": 4032 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26338, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.6937709+00:00", - "fileLastModified": "2025-07-14T09:31:00.6937713+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.6937687+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1298 - }, - "imageDetail": { - "width": 3045, - "height": 7453 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 62091, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.7012058+00:00", - "fileLastModified": "2025-07-14T09:31:00.7012062+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7012065+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7012028+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1299 - }, - "imageDetail": { - "width": 6104, - "height": 6308 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 72689, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.7079681+00:00", - "fileLastModified": "2025-07-14T09:31:00.7079686+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7079688+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7079656+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1300 - }, - "imageDetail": { - "width": 7002, - "height": 8249 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 46246, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.7149977+00:00", - "fileLastModified": "2025-07-14T09:31:00.7149987+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7149947+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1301 - }, - "imageDetail": { - "width": 9165, - "height": 2696 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 56152, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.7211641+00:00", - "fileLastModified": "2025-07-14T09:31:00.7211645+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7211647+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7211618+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1302 - }, - "imageDetail": { - "width": 769, - "height": 3719 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 66915, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.7278346+00:00", - "fileLastModified": "2025-07-14T09:31:00.727835+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7278317+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1303 - }, - "imageDetail": { - "width": 4709, - "height": 2425 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 87685, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.734071+00:00", - "fileLastModified": "2025-07-14T09:31:00.7340715+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7340719+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7340674+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1304 - }, - "imageDetail": { - "width": 6412, - "height": 2313 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61602, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.7404692+00:00", - "fileLastModified": "2025-07-14T09:31:00.7404697+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7404667+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1305 - }, - "imageDetail": { - "width": 3268, - "height": 2486 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 43898, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.7477196+00:00", - "fileLastModified": "2025-07-14T09:31:00.7477201+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7477203+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7477161+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1306 - }, - "imageDetail": { - "width": 9254, - "height": 3718 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83847, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.7540693+00:00", - "fileLastModified": "2025-07-14T09:31:00.7540703+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7540706+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7540667+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1307 - }, - "imageDetail": { - "width": 6967, - "height": 4715 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96456, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.7609063+00:00", - "fileLastModified": "2025-07-14T09:31:00.7609071+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7609078+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7608979+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1308 - }, - "imageDetail": { - "width": 7451, - "height": 5133 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98330, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.7667748+00:00", - "fileLastModified": "2025-07-14T09:31:00.7667753+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7667755+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7667728+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1309 - }, - "imageDetail": { - "width": 2196, - "height": 4108 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 59426, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.7728907+00:00", - "fileLastModified": "2025-07-14T09:31:00.7728912+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7728915+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7728888+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1310 - }, - "imageDetail": { - "width": 3591, - "height": 9617 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 98068, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.779127+00:00", - "fileLastModified": "2025-07-14T09:31:00.7791276+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7791278+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7791237+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1311 - }, - "imageDetail": { - "width": 7020, - "height": 7478 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37194, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.7850913+00:00", - "fileLastModified": "2025-07-14T09:31:00.7850917+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7850897+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1312 - }, - "imageDetail": { - "width": 6851, - "height": 7676 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 98926, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.7914644+00:00", - "fileLastModified": "2025-07-14T09:31:00.7914651+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7914618+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1313 - }, - "imageDetail": { - "width": 8251, - "height": 8799 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 58255, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.7974867+00:00", - "fileLastModified": "2025-07-14T09:31:00.797487+00:00", - "fileLastViewed": "2025-07-14T09:31:00.7974872+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.7974851+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1314 - }, - "imageDetail": { - "width": 7793, - "height": 9747 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37072, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.8036916+00:00", - "fileLastModified": "2025-07-14T09:31:00.8036928+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8036931+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.803688+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1315 - }, - "imageDetail": { - "width": 7250, - "height": 4243 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 29999, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.8106182+00:00", - "fileLastModified": "2025-07-14T09:31:00.8106189+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8106153+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1316 - }, - "imageDetail": { - "width": 2480, - "height": 4315 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 96249, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.8167433+00:00", - "fileLastModified": "2025-07-14T09:31:00.8167438+00:00", - "fileLastViewed": "2025-07-14T09:31:00.816744+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8167412+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1317 - }, - "imageDetail": { - "width": 691, - "height": 4416 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82887, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.8229027+00:00", - "fileLastModified": "2025-07-14T09:31:00.8229034+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8229036+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8229003+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1318 - }, - "imageDetail": { - "width": 4247, - "height": 2519 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 22761, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.8290142+00:00", - "fileLastModified": "2025-07-14T09:31:00.8290147+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8290149+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8290125+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1319 - }, - "imageDetail": { - "width": 5133, - "height": 6329 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63709, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.8359956+00:00", - "fileLastModified": "2025-07-14T09:31:00.8359963+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8359931+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1320 - }, - "imageDetail": { - "width": 1858, - "height": 4057 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 42600, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.8423398+00:00", - "fileLastModified": "2025-07-14T09:31:00.8423403+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8423405+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8423374+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1321 - }, - "imageDetail": { - "width": 351, - "height": 6300 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 88438, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.8487068+00:00", - "fileLastModified": "2025-07-14T09:31:00.8487074+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8487048+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1322 - }, - "imageDetail": { - "width": 5249, - "height": 4794 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28325, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.8555772+00:00", - "fileLastModified": "2025-07-14T09:31:00.8555779+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8555745+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1323 - }, - "imageDetail": { - "width": 4488, - "height": 8607 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 21041, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.8618194+00:00", - "fileLastModified": "2025-07-14T09:31:00.8618199+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8618201+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8618175+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1324 - }, - "imageDetail": { - "width": 2233, - "height": 9810 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91453, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.8685746+00:00", - "fileLastModified": "2025-07-14T09:31:00.8685759+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8685763+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8685703+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1325 - }, - "imageDetail": { - "width": 3160, - "height": 3594 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 24356, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.8749886+00:00", - "fileLastModified": "2025-07-14T09:31:00.874989+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.874986+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1326 - }, - "imageDetail": { - "width": 8306, - "height": 8748 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 79542, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.8817687+00:00", - "fileLastModified": "2025-07-14T09:31:00.8817694+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8817697+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8817654+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1327 - }, - "imageDetail": { - "width": 6258, - "height": 3391 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45601, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.8879214+00:00", - "fileLastModified": "2025-07-14T09:31:00.8879217+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8879196+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1328 - }, - "imageDetail": { - "width": 1994, - "height": 3513 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47193, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.8939891+00:00", - "fileLastModified": "2025-07-14T09:31:00.8939894+00:00", - "fileLastViewed": "2025-07-14T09:31:00.8939895+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.8939874+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1329 - }, - "imageDetail": { - "width": 5911, - "height": 2564 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75547, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.9003141+00:00", - "fileLastModified": "2025-07-14T09:31:00.9003144+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9003145+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9003122+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1330 - }, - "imageDetail": { - "width": 5804, - "height": 3620 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 54621, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.9066579+00:00", - "fileLastModified": "2025-07-14T09:31:00.9066583+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9066585+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9066545+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1331 - }, - "imageDetail": { - "width": 5390, - "height": 9191 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 42791, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.9131531+00:00", - "fileLastModified": "2025-07-14T09:31:00.9131536+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9131491+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1332 - }, - "imageDetail": { - "width": 7819, - "height": 3923 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65639, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.9196668+00:00", - "fileLastModified": "2025-07-14T09:31:00.9196673+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9196674+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9196647+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1333 - }, - "imageDetail": { - "width": 3876, - "height": 6086 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 57875, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.9265241+00:00", - "fileLastModified": "2025-07-14T09:31:00.9265245+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9265214+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1334 - }, - "imageDetail": { - "width": 214, - "height": 6336 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53805, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.9329865+00:00", - "fileLastModified": "2025-07-14T09:31:00.932987+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9329835+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1335 - }, - "imageDetail": { - "width": 2234, - "height": 6784 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 49877, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.9388692+00:00", - "fileLastModified": "2025-07-14T09:31:00.9388696+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9388673+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1336 - }, - "imageDetail": { - "width": 3816, - "height": 2171 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 98724, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.9451253+00:00", - "fileLastModified": "2025-07-14T09:31:00.9451257+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9451227+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1337 - }, - "imageDetail": { - "width": 2687, - "height": 2348 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 84499, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.9511663+00:00", - "fileLastModified": "2025-07-14T09:31:00.9511672+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9511647+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1338 - }, - "imageDetail": { - "width": 8552, - "height": 6327 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90061, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.9571792+00:00", - "fileLastModified": "2025-07-14T09:31:00.9571795+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9571797+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9571777+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1339 - }, - "imageDetail": { - "width": 5036, - "height": 5459 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95028, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.9650394+00:00", - "fileLastModified": "2025-07-14T09:31:00.9650399+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9650403+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9650361+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1340 - }, - "imageDetail": { - "width": 8330, - "height": 4461 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 27155, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:00.9713152+00:00", - "fileLastModified": "2025-07-14T09:31:00.9713155+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9713156+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9713136+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1341 - }, - "imageDetail": { - "width": 278, - "height": 3029 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70033, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:00.9778808+00:00", - "fileLastModified": "2025-07-14T09:31:00.9778811+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9778813+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9778783+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1342 - }, - "imageDetail": { - "width": 306, - "height": 7553 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 94171, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:00.9843777+00:00", - "fileLastModified": "2025-07-14T09:31:00.9843782+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9843784+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9843749+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1343 - }, - "imageDetail": { - "width": 1665, - "height": 4603 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73073, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:00.9909537+00:00", - "fileLastModified": "2025-07-14T09:31:00.9909542+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9909512+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1344 - }, - "imageDetail": { - "width": 2750, - "height": 2934 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 96007, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:00.9976808+00:00", - "fileLastModified": "2025-07-14T09:31:00.9976812+00:00", - "fileLastViewed": "2025-07-14T09:31:00.9976815+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:00.9976781+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1345 - }, - "imageDetail": { - "width": 310, - "height": 5970 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 99050, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.0039176+00:00", - "fileLastModified": "2025-07-14T09:31:01.0039178+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0039158+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1346 - }, - "imageDetail": { - "width": 5714, - "height": 2047 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87624, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.0109863+00:00", - "fileLastModified": "2025-07-14T09:31:01.0109866+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0109838+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1347 - }, - "imageDetail": { - "width": 7054, - "height": 3176 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 38385, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.017382+00:00", - "fileLastModified": "2025-07-14T09:31:01.0173822+00:00", - "fileLastViewed": "2025-07-14T09:31:01.0173823+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0173804+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1348 - }, - "imageDetail": { - "width": 8925, - "height": 9427 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71069, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.0240124+00:00", - "fileLastModified": "2025-07-14T09:31:01.0240127+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0240103+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1349 - }, - "imageDetail": { - "width": 7889, - "height": 7067 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 64096, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.0303057+00:00", - "fileLastModified": "2025-07-14T09:31:01.0303059+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0303043+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1350 - }, - "imageDetail": { - "width": 4007, - "height": 4549 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 44385, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.0367036+00:00", - "fileLastModified": "2025-07-14T09:31:01.036704+00:00", - "fileLastViewed": "2025-07-14T09:31:01.0367041+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0366856+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1351 - }, - "imageDetail": { - "width": 4688, - "height": 5935 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70315, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.0430525+00:00", - "fileLastModified": "2025-07-14T09:31:01.0430527+00:00", - "fileLastViewed": "2025-07-14T09:31:01.0430529+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0430506+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1352 - }, - "imageDetail": { - "width": 8664, - "height": 9418 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67288, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.0493824+00:00", - "fileLastModified": "2025-07-14T09:31:01.0493827+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0493807+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1353 - }, - "imageDetail": { - "width": 230, - "height": 9971 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94684, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.0564162+00:00", - "fileLastModified": "2025-07-14T09:31:01.0564165+00:00", - "fileLastViewed": "2025-07-14T09:31:01.0564167+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0564141+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1354 - }, - "imageDetail": { - "width": 1752, - "height": 8268 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97445, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.0629936+00:00", - "fileLastModified": "2025-07-14T09:31:01.0629939+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0629763+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1355 - }, - "imageDetail": { - "width": 9309, - "height": 3003 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 43077, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.0699866+00:00", - "fileLastModified": "2025-07-14T09:31:01.069987+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0699835+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1356 - }, - "imageDetail": { - "width": 8298, - "height": 5686 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50856, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.0763355+00:00", - "fileLastModified": "2025-07-14T09:31:01.0763358+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0763338+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1357 - }, - "imageDetail": { - "width": 1647, - "height": 7029 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73166, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.0827191+00:00", - "fileLastModified": "2025-07-14T09:31:01.0827194+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0827175+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1358 - }, - "imageDetail": { - "width": 7427, - "height": 7790 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 79199, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.0895562+00:00", - "fileLastModified": "2025-07-14T09:31:01.0895565+00:00", - "fileLastViewed": "2025-07-14T09:31:01.0895566+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0895544+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1359 - }, - "imageDetail": { - "width": 4804, - "height": 3118 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 21039, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.095941+00:00", - "fileLastModified": "2025-07-14T09:31:01.0959413+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.0959392+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1360 - }, - "imageDetail": { - "width": 7211, - "height": 8055 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 95585, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.1055431+00:00", - "fileLastModified": "2025-07-14T09:31:01.1055438+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1055445+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1055392+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1361 - }, - "imageDetail": { - "width": 1159, - "height": 4348 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95530, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.1172077+00:00", - "fileLastModified": "2025-07-14T09:31:01.1172089+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1172094+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1172039+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1362 - }, - "imageDetail": { - "width": 4596, - "height": 4290 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 40918, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.1273965+00:00", - "fileLastModified": "2025-07-14T09:31:01.1273972+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1273978+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1273926+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1363 - }, - "imageDetail": { - "width": 1241, - "height": 6011 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82293, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.1376995+00:00", - "fileLastModified": "2025-07-14T09:31:01.1377001+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1377006+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.137689+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1364 - }, - "imageDetail": { - "width": 8856, - "height": 8165 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 89448, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.1451671+00:00", - "fileLastModified": "2025-07-14T09:31:01.1451677+00:00", - "fileLastViewed": "2025-07-14T09:31:01.145168+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1451644+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1365 - }, - "imageDetail": { - "width": 9097, - "height": 4790 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 52508, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.1523373+00:00", - "fileLastModified": "2025-07-14T09:31:01.1523379+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1523386+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1523349+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1366 - }, - "imageDetail": { - "width": 374, - "height": 8477 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53526, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.1591606+00:00", - "fileLastModified": "2025-07-14T09:31:01.1591612+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1591615+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1591579+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1367 - }, - "imageDetail": { - "width": 3476, - "height": 6366 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55286, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.1667656+00:00", - "fileLastModified": "2025-07-14T09:31:01.1667661+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1667633+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1368 - }, - "imageDetail": { - "width": 7652, - "height": 7627 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 42783, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.1740262+00:00", - "fileLastModified": "2025-07-14T09:31:01.1740269+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1740272+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1740234+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1369 - }, - "imageDetail": { - "width": 5844, - "height": 5573 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 92637, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.1811755+00:00", - "fileLastModified": "2025-07-14T09:31:01.1811762+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1811727+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1370 - }, - "imageDetail": { - "width": 7728, - "height": 3847 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 52263, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.1885064+00:00", - "fileLastModified": "2025-07-14T09:31:01.188507+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1884811+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1371 - }, - "imageDetail": { - "width": 7399, - "height": 9457 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94368, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.1963135+00:00", - "fileLastModified": "2025-07-14T09:31:01.1963141+00:00", - "fileLastViewed": "2025-07-14T09:31:01.1963144+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.1963105+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1372 - }, - "imageDetail": { - "width": 9766, - "height": 2226 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 34598, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.2037873+00:00", - "fileLastModified": "2025-07-14T09:31:01.203788+00:00", - "fileLastViewed": "2025-07-14T09:31:01.2037884+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2037842+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1373 - }, - "imageDetail": { - "width": 4317, - "height": 5080 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 41523, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.2111224+00:00", - "fileLastModified": "2025-07-14T09:31:01.211123+00:00", - "fileLastViewed": "2025-07-14T09:31:01.2111236+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2111199+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1374 - }, - "imageDetail": { - "width": 1535, - "height": 8412 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 55529, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.2183841+00:00", - "fileLastModified": "2025-07-14T09:31:01.2183847+00:00", - "fileLastViewed": "2025-07-14T09:31:01.218385+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2183814+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1375 - }, - "imageDetail": { - "width": 7230, - "height": 8426 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 92592, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.2258464+00:00", - "fileLastModified": "2025-07-14T09:31:01.2258471+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2258437+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1376 - }, - "imageDetail": { - "width": 170, - "height": 6668 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85022, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.2330868+00:00", - "fileLastModified": "2025-07-14T09:31:01.2330874+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.233084+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1377 - }, - "imageDetail": { - "width": 3326, - "height": 9306 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 78182, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.2407248+00:00", - "fileLastModified": "2025-07-14T09:31:01.2407257+00:00", - "fileLastViewed": "2025-07-14T09:31:01.2407262+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2405979+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1378 - }, - "imageDetail": { - "width": 6414, - "height": 4600 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24232, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.2489588+00:00", - "fileLastModified": "2025-07-14T09:31:01.2489595+00:00", - "fileLastViewed": "2025-07-14T09:31:01.2489599+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2489548+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1379 - }, - "imageDetail": { - "width": 1977, - "height": 4541 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 71976, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.2592287+00:00", - "fileLastModified": "2025-07-14T09:31:01.2592294+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2592257+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1380 - }, - "imageDetail": { - "width": 2850, - "height": 5794 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 53852, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.2672748+00:00", - "fileLastModified": "2025-07-14T09:31:01.2672754+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2672716+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1381 - }, - "imageDetail": { - "width": 2951, - "height": 9315 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96472, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.277635+00:00", - "fileLastModified": "2025-07-14T09:31:01.2776357+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.277631+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1382 - }, - "imageDetail": { - "width": 8443, - "height": 4443 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 46980, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.2857745+00:00", - "fileLastModified": "2025-07-14T09:31:01.2857753+00:00", - "fileLastViewed": "2025-07-14T09:31:01.2857758+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.2857715+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1383 - }, - "imageDetail": { - "width": 2220, - "height": 4330 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 79064, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.2938005+00:00", - "fileLastModified": "2025-07-14T09:31:01.2938015+00:00", - "fileLastViewed": "2025-07-14T09:31:01.2938018+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.293798+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1384 - }, - "imageDetail": { - "width": 4094, - "height": 5149 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85122, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.3022229+00:00", - "fileLastModified": "2025-07-14T09:31:01.3022237+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3022241+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.302219+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1385 - }, - "imageDetail": { - "width": 7894, - "height": 9460 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 35894, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.310004+00:00", - "fileLastModified": "2025-07-14T09:31:01.3100045+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3100049+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3100016+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1386 - }, - "imageDetail": { - "width": 9047, - "height": 7228 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 64094, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.317796+00:00", - "fileLastModified": "2025-07-14T09:31:01.3177965+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3177968+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3177935+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1387 - }, - "imageDetail": { - "width": 2256, - "height": 7973 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 60341, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.3260415+00:00", - "fileLastModified": "2025-07-14T09:31:01.3260566+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3260569+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3260387+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1388 - }, - "imageDetail": { - "width": 1976, - "height": 6018 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 84562, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.3337059+00:00", - "fileLastModified": "2025-07-14T09:31:01.3337067+00:00", - "fileLastViewed": "2025-07-14T09:31:01.333707+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3337035+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1389 - }, - "imageDetail": { - "width": 7835, - "height": 4329 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46817, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.3406802+00:00", - "fileLastModified": "2025-07-14T09:31:01.3406809+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3406811+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3406784+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1390 - }, - "imageDetail": { - "width": 3880, - "height": 6251 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 51460, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.3478627+00:00", - "fileLastModified": "2025-07-14T09:31:01.347863+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3478609+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1391 - }, - "imageDetail": { - "width": 6835, - "height": 7008 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22159, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.3566863+00:00", - "fileLastModified": "2025-07-14T09:31:01.3566868+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3566869+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3566837+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1392 - }, - "imageDetail": { - "width": 620, - "height": 6694 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66082, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.3638228+00:00", - "fileLastModified": "2025-07-14T09:31:01.3638232+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3638237+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3638212+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1393 - }, - "imageDetail": { - "width": 881, - "height": 7895 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 36568, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.3710244+00:00", - "fileLastModified": "2025-07-14T09:31:01.3710247+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3710249+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3710224+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1394 - }, - "imageDetail": { - "width": 5796, - "height": 2116 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 23549, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.3784492+00:00", - "fileLastModified": "2025-07-14T09:31:01.3784497+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3784498+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3784473+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1395 - }, - "imageDetail": { - "width": 2563, - "height": 8522 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 63287, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.3860917+00:00", - "fileLastModified": "2025-07-14T09:31:01.3860921+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3860923+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3860893+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1396 - }, - "imageDetail": { - "width": 104, - "height": 7750 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 39374, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.393003+00:00", - "fileLastModified": "2025-07-14T09:31:01.3930033+00:00", - "fileLastViewed": "2025-07-14T09:31:01.3930034+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.3930017+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1397 - }, - "imageDetail": { - "width": 5279, - "height": 2519 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 67055, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.4004417+00:00", - "fileLastModified": "2025-07-14T09:31:01.4004422+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4004401+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1398 - }, - "imageDetail": { - "width": 9660, - "height": 4603 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 26828, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.4074621+00:00", - "fileLastModified": "2025-07-14T09:31:01.4074624+00:00", - "fileLastViewed": "2025-07-14T09:31:01.4074625+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4074608+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1399 - }, - "imageDetail": { - "width": 425, - "height": 2830 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79712, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.4146444+00:00", - "fileLastModified": "2025-07-14T09:31:01.4146448+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.414643+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1400 - }, - "imageDetail": { - "width": 5250, - "height": 7105 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 27955, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.4216345+00:00", - "fileLastModified": "2025-07-14T09:31:01.4216348+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4216332+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1401 - }, - "imageDetail": { - "width": 958, - "height": 6964 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43869, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.4292188+00:00", - "fileLastModified": "2025-07-14T09:31:01.4292193+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4292166+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1402 - }, - "imageDetail": { - "width": 7812, - "height": 2350 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41227, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.436503+00:00", - "fileLastModified": "2025-07-14T09:31:01.4365034+00:00", - "fileLastViewed": "2025-07-14T09:31:01.4365035+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4365005+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1403 - }, - "imageDetail": { - "width": 7977, - "height": 2120 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59954, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.444766+00:00", - "fileLastModified": "2025-07-14T09:31:01.444767+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4447637+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1404 - }, - "imageDetail": { - "width": 4790, - "height": 6497 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 72590, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.4521363+00:00", - "fileLastModified": "2025-07-14T09:31:01.4521367+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4521342+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1405 - }, - "imageDetail": { - "width": 5738, - "height": 3378 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 77335, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.4604837+00:00", - "fileLastModified": "2025-07-14T09:31:01.4604842+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4604809+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1406 - }, - "imageDetail": { - "width": 6634, - "height": 4806 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70987, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.468035+00:00", - "fileLastModified": "2025-07-14T09:31:01.4680353+00:00", - "fileLastViewed": "2025-07-14T09:31:01.4680355+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4680329+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1407 - }, - "imageDetail": { - "width": 7317, - "height": 6513 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 66135, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.4758509+00:00", - "fileLastModified": "2025-07-14T09:31:01.4758514+00:00", - "fileLastViewed": "2025-07-14T09:31:01.4758516+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4758483+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1408 - }, - "imageDetail": { - "width": 5435, - "height": 9712 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58312, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.4841045+00:00", - "fileLastModified": "2025-07-14T09:31:01.4841052+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4841022+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1409 - }, - "imageDetail": { - "width": 1471, - "height": 9961 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23328, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.491971+00:00", - "fileLastModified": "2025-07-14T09:31:01.4919713+00:00", - "fileLastViewed": "2025-07-14T09:31:01.4919715+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.491969+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1410 - }, - "imageDetail": { - "width": 2602, - "height": 4314 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 72983, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.4993854+00:00", - "fileLastModified": "2025-07-14T09:31:01.4993856+00:00", - "fileLastViewed": "2025-07-14T09:31:01.4993857+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.4993839+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1411 - }, - "imageDetail": { - "width": 7582, - "height": 7182 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 32284, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5075583+00:00", - "fileLastModified": "2025-07-14T09:31:01.5075587+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5075561+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1412 - }, - "imageDetail": { - "width": 257, - "height": 8860 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21799, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5147918+00:00", - "fileLastModified": "2025-07-14T09:31:01.514792+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5147905+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1413 - }, - "imageDetail": { - "width": 1909, - "height": 7982 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75943, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.5221819+00:00", - "fileLastModified": "2025-07-14T09:31:01.5221822+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5221823+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5221801+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1414 - }, - "imageDetail": { - "width": 2951, - "height": 4620 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 64171, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.52817+00:00", - "fileLastModified": "2025-07-14T09:31:01.5281702+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5281703+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5281685+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1415 - }, - "imageDetail": { - "width": 556, - "height": 2878 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34957, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.5320539+00:00", - "fileLastModified": "2025-07-14T09:31:01.5320541+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5320543+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5320524+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1416 - }, - "imageDetail": { - "width": 4783, - "height": 4044 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44692, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.536109+00:00", - "fileLastModified": "2025-07-14T09:31:01.5361092+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5361075+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1417 - }, - "imageDetail": { - "width": 1244, - "height": 7523 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 98244, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5389153+00:00", - "fileLastModified": "2025-07-14T09:31:01.5389155+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5389157+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.538914+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1418 - }, - "imageDetail": { - "width": 4305, - "height": 7036 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82713, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5413219+00:00", - "fileLastModified": "2025-07-14T09:31:01.5413221+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5413207+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1419 - }, - "imageDetail": { - "width": 744, - "height": 5944 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 52509, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.5438095+00:00", - "fileLastModified": "2025-07-14T09:31:01.5438097+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5438081+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1420 - }, - "imageDetail": { - "width": 6909, - "height": 8963 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 75502, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.5460528+00:00", - "fileLastModified": "2025-07-14T09:31:01.5460531+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5460515+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1421 - }, - "imageDetail": { - "width": 1435, - "height": 2035 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 41048, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.5484207+00:00", - "fileLastModified": "2025-07-14T09:31:01.5484209+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5484195+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1422 - }, - "imageDetail": { - "width": 9230, - "height": 9632 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66113, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.551342+00:00", - "fileLastModified": "2025-07-14T09:31:01.5513423+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5513396+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1423 - }, - "imageDetail": { - "width": 4295, - "height": 9646 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 91544, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5538396+00:00", - "fileLastModified": "2025-07-14T09:31:01.5538398+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5538378+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1424 - }, - "imageDetail": { - "width": 931, - "height": 8529 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 96863, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5560157+00:00", - "fileLastModified": "2025-07-14T09:31:01.5560159+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5560145+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1425 - }, - "imageDetail": { - "width": 9324, - "height": 9169 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88370, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.5582017+00:00", - "fileLastModified": "2025-07-14T09:31:01.5582019+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5582002+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1426 - }, - "imageDetail": { - "width": 5374, - "height": 5853 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28061, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.560301+00:00", - "fileLastModified": "2025-07-14T09:31:01.5603013+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5602996+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1427 - }, - "imageDetail": { - "width": 1370, - "height": 4375 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 28632, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5629036+00:00", - "fileLastModified": "2025-07-14T09:31:01.5629039+00:00", - "fileLastViewed": "2025-07-14T09:31:01.562904+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5629021+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1428 - }, - "imageDetail": { - "width": 6935, - "height": 5824 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46951, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.5647476+00:00", - "fileLastModified": "2025-07-14T09:31:01.5647479+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.564746+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1429 - }, - "imageDetail": { - "width": 3664, - "height": 7211 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 73762, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5672633+00:00", - "fileLastModified": "2025-07-14T09:31:01.5672636+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5672614+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1430 - }, - "imageDetail": { - "width": 735, - "height": 2985 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 57355, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.5689894+00:00", - "fileLastModified": "2025-07-14T09:31:01.5689897+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5689898+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5689879+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1431 - }, - "imageDetail": { - "width": 2873, - "height": 8000 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 35221, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.5707237+00:00", - "fileLastModified": "2025-07-14T09:31:01.5707239+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5707241+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5707225+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1432 - }, - "imageDetail": { - "width": 2583, - "height": 3583 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 89723, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5722618+00:00", - "fileLastModified": "2025-07-14T09:31:01.5722621+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5722622+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5722607+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1433 - }, - "imageDetail": { - "width": 3240, - "height": 4305 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 90443, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5738131+00:00", - "fileLastModified": "2025-07-14T09:31:01.5738133+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.573812+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1434 - }, - "imageDetail": { - "width": 4426, - "height": 5472 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64501, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.5753478+00:00", - "fileLastModified": "2025-07-14T09:31:01.575348+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5753467+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1435 - }, - "imageDetail": { - "width": 1640, - "height": 2806 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 98409, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.57695+00:00", - "fileLastModified": "2025-07-14T09:31:01.5769502+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5769486+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1436 - }, - "imageDetail": { - "width": 1501, - "height": 9758 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 81603, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5784368+00:00", - "fileLastModified": "2025-07-14T09:31:01.5784371+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5784372+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5784357+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1437 - }, - "imageDetail": { - "width": 4687, - "height": 7581 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23230, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.580545+00:00", - "fileLastModified": "2025-07-14T09:31:01.5805452+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5805434+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1438 - }, - "imageDetail": { - "width": 8069, - "height": 2854 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91654, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5827306+00:00", - "fileLastModified": "2025-07-14T09:31:01.5827312+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5827314+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5827282+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1439 - }, - "imageDetail": { - "width": 1354, - "height": 6206 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 67962, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5847654+00:00", - "fileLastModified": "2025-07-14T09:31:01.5847656+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5847637+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1440 - }, - "imageDetail": { - "width": 3612, - "height": 8085 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 62841, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.5864032+00:00", - "fileLastModified": "2025-07-14T09:31:01.5864035+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5864019+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1441 - }, - "imageDetail": { - "width": 653, - "height": 8857 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 66661, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5879164+00:00", - "fileLastModified": "2025-07-14T09:31:01.5879166+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5879153+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1442 - }, - "imageDetail": { - "width": 3663, - "height": 8128 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 25192, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.5894467+00:00", - "fileLastModified": "2025-07-14T09:31:01.589447+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5894471+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5894456+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1443 - }, - "imageDetail": { - "width": 5199, - "height": 5743 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 32151, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.5909151+00:00", - "fileLastModified": "2025-07-14T09:31:01.5909153+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5909154+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5909141+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1444 - }, - "imageDetail": { - "width": 3755, - "height": 5792 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 77305, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.592378+00:00", - "fileLastModified": "2025-07-14T09:31:01.5923782+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5923783+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5923769+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1445 - }, - "imageDetail": { - "width": 3329, - "height": 9914 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 24944, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.5937682+00:00", - "fileLastModified": "2025-07-14T09:31:01.5937684+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5937672+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1446 - }, - "imageDetail": { - "width": 1603, - "height": 4485 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53561, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.5952403+00:00", - "fileLastModified": "2025-07-14T09:31:01.5952405+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5952392+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1447 - }, - "imageDetail": { - "width": 7037, - "height": 9564 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 91238, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.5972747+00:00", - "fileLastModified": "2025-07-14T09:31:01.5972749+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5972732+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1448 - }, - "imageDetail": { - "width": 9883, - "height": 5667 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83432, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.5999728+00:00", - "fileLastModified": "2025-07-14T09:31:01.5999731+00:00", - "fileLastViewed": "2025-07-14T09:31:01.5999733+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.5999706+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1449 - }, - "imageDetail": { - "width": 1915, - "height": 5264 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 66105, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6021953+00:00", - "fileLastModified": "2025-07-14T09:31:01.6021956+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6021928+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1450 - }, - "imageDetail": { - "width": 9843, - "height": 4825 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 51642, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6041334+00:00", - "fileLastModified": "2025-07-14T09:31:01.6041336+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6041339+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6041315+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1451 - }, - "imageDetail": { - "width": 155, - "height": 3347 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33508, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6059386+00:00", - "fileLastModified": "2025-07-14T09:31:01.6059388+00:00", - "fileLastViewed": "2025-07-14T09:31:01.605939+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6059375+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1452 - }, - "imageDetail": { - "width": 7681, - "height": 8409 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 30135, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6077617+00:00", - "fileLastModified": "2025-07-14T09:31:01.6077621+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6077623+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6077601+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1453 - }, - "imageDetail": { - "width": 4699, - "height": 7567 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 49457, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6095624+00:00", - "fileLastModified": "2025-07-14T09:31:01.6095626+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6095608+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1454 - }, - "imageDetail": { - "width": 7432, - "height": 9617 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 29979, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6112021+00:00", - "fileLastModified": "2025-07-14T09:31:01.6112024+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6112008+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1455 - }, - "imageDetail": { - "width": 1217, - "height": 6891 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 93279, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6128519+00:00", - "fileLastModified": "2025-07-14T09:31:01.6128524+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6128526+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6128494+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1456 - }, - "imageDetail": { - "width": 4745, - "height": 5978 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 22352, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6153861+00:00", - "fileLastModified": "2025-07-14T09:31:01.6153863+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6153841+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1457 - }, - "imageDetail": { - "width": 3923, - "height": 9629 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 74801, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6177618+00:00", - "fileLastModified": "2025-07-14T09:31:01.617762+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6177597+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1458 - }, - "imageDetail": { - "width": 6093, - "height": 8197 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31348, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6194188+00:00", - "fileLastModified": "2025-07-14T09:31:01.619419+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6194193+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6194171+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1459 - }, - "imageDetail": { - "width": 6916, - "height": 4086 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59184, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6210414+00:00", - "fileLastModified": "2025-07-14T09:31:01.6210416+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.62104+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1460 - }, - "imageDetail": { - "width": 124, - "height": 5640 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23407, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6226358+00:00", - "fileLastModified": "2025-07-14T09:31:01.622636+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6226344+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1461 - }, - "imageDetail": { - "width": 4131, - "height": 7921 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65806, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6242313+00:00", - "fileLastModified": "2025-07-14T09:31:01.6242316+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6242317+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6242301+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1462 - }, - "imageDetail": { - "width": 8673, - "height": 9230 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58126, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6257984+00:00", - "fileLastModified": "2025-07-14T09:31:01.6257986+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6257962+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1463 - }, - "imageDetail": { - "width": 2496, - "height": 6741 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 52422, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6277565+00:00", - "fileLastModified": "2025-07-14T09:31:01.6277568+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6277544+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1464 - }, - "imageDetail": { - "width": 3214, - "height": 9248 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68061, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6299199+00:00", - "fileLastModified": "2025-07-14T09:31:01.6299201+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6299203+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6299181+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1465 - }, - "imageDetail": { - "width": 4895, - "height": 5711 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 63921, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6317487+00:00", - "fileLastModified": "2025-07-14T09:31:01.631749+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6317468+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1466 - }, - "imageDetail": { - "width": 7632, - "height": 6028 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 24089, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6334092+00:00", - "fileLastModified": "2025-07-14T09:31:01.6334094+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6334096+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6334076+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1467 - }, - "imageDetail": { - "width": 3581, - "height": 4374 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 24038, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6354106+00:00", - "fileLastModified": "2025-07-14T09:31:01.6354108+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6354091+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1468 - }, - "imageDetail": { - "width": 715, - "height": 9405 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 77201, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6369199+00:00", - "fileLastModified": "2025-07-14T09:31:01.6369202+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6369204+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6369187+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1469 - }, - "imageDetail": { - "width": 3281, - "height": 9979 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 49672, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6384288+00:00", - "fileLastModified": "2025-07-14T09:31:01.638429+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6384292+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6384276+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1470 - }, - "imageDetail": { - "width": 6066, - "height": 6392 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 50399, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6401739+00:00", - "fileLastModified": "2025-07-14T09:31:01.6401741+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6401744+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.640172+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1471 - }, - "imageDetail": { - "width": 617, - "height": 6320 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 78860, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6417462+00:00", - "fileLastModified": "2025-07-14T09:31:01.6417464+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6417466+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.641745+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1472 - }, - "imageDetail": { - "width": 9258, - "height": 2535 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 29518, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6433056+00:00", - "fileLastModified": "2025-07-14T09:31:01.6433058+00:00", - "fileLastViewed": "2025-07-14T09:31:01.643306+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6433045+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1473 - }, - "imageDetail": { - "width": 3226, - "height": 9755 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 57318, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6454309+00:00", - "fileLastModified": "2025-07-14T09:31:01.6454311+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.645429+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1474 - }, - "imageDetail": { - "width": 5263, - "height": 4385 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71255, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6473351+00:00", - "fileLastModified": "2025-07-14T09:31:01.6473353+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6473356+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6473336+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1475 - }, - "imageDetail": { - "width": 3790, - "height": 7905 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 91922, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6492089+00:00", - "fileLastModified": "2025-07-14T09:31:01.6492091+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6492094+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6492074+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1476 - }, - "imageDetail": { - "width": 111, - "height": 5030 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 24721, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6507751+00:00", - "fileLastModified": "2025-07-14T09:31:01.6507754+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6507735+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1477 - }, - "imageDetail": { - "width": 6611, - "height": 4937 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 53514, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6530565+00:00", - "fileLastModified": "2025-07-14T09:31:01.6530568+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6530543+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1478 - }, - "imageDetail": { - "width": 5283, - "height": 2120 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 98674, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6546689+00:00", - "fileLastModified": "2025-07-14T09:31:01.6546691+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6546673+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1479 - }, - "imageDetail": { - "width": 7912, - "height": 2503 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 55991, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6563685+00:00", - "fileLastModified": "2025-07-14T09:31:01.6563687+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6563668+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1480 - }, - "imageDetail": { - "width": 2960, - "height": 6166 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 73987, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6579806+00:00", - "fileLastModified": "2025-07-14T09:31:01.6579808+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.657979+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1481 - }, - "imageDetail": { - "width": 3540, - "height": 9079 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 54514, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.659763+00:00", - "fileLastModified": "2025-07-14T09:31:01.6597635+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6597607+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1482 - }, - "imageDetail": { - "width": 6230, - "height": 2473 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92581, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6620878+00:00", - "fileLastModified": "2025-07-14T09:31:01.662088+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.662086+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1483 - }, - "imageDetail": { - "width": 8990, - "height": 3933 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 70584, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6637376+00:00", - "fileLastModified": "2025-07-14T09:31:01.6637378+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6637362+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1484 - }, - "imageDetail": { - "width": 6884, - "height": 8540 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 73970, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6652896+00:00", - "fileLastModified": "2025-07-14T09:31:01.6652898+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6652878+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1485 - }, - "imageDetail": { - "width": 4623, - "height": 5300 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 91019, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6667807+00:00", - "fileLastModified": "2025-07-14T09:31:01.666781+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6667796+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1486 - }, - "imageDetail": { - "width": 9728, - "height": 7935 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40563, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6689738+00:00", - "fileLastModified": "2025-07-14T09:31:01.668974+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6689725+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1487 - }, - "imageDetail": { - "width": 8248, - "height": 4649 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 43233, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.670644+00:00", - "fileLastModified": "2025-07-14T09:31:01.6706442+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6706426+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1488 - }, - "imageDetail": { - "width": 7253, - "height": 3242 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76457, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6722689+00:00", - "fileLastModified": "2025-07-14T09:31:01.6722692+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6722674+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1489 - }, - "imageDetail": { - "width": 2178, - "height": 5953 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 65232, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6739496+00:00", - "fileLastModified": "2025-07-14T09:31:01.6739499+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6739501+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6739484+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1490 - }, - "imageDetail": { - "width": 4291, - "height": 7082 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 36187, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.676358+00:00", - "fileLastModified": "2025-07-14T09:31:01.6763583+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6763588+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6763557+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1491 - }, - "imageDetail": { - "width": 5376, - "height": 5305 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 31169, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6782847+00:00", - "fileLastModified": "2025-07-14T09:31:01.6782851+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6782854+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6782829+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1492 - }, - "imageDetail": { - "width": 1019, - "height": 6518 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 32459, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6800053+00:00", - "fileLastModified": "2025-07-14T09:31:01.6800056+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.680004+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1493 - }, - "imageDetail": { - "width": 5919, - "height": 3307 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63346, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6816916+00:00", - "fileLastModified": "2025-07-14T09:31:01.6816922+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6816904+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1494 - }, - "imageDetail": { - "width": 7907, - "height": 9375 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 85687, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6833585+00:00", - "fileLastModified": "2025-07-14T09:31:01.6833587+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6833563+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1495 - }, - "imageDetail": { - "width": 7532, - "height": 2313 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 48160, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.6852303+00:00", - "fileLastModified": "2025-07-14T09:31:01.6852305+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6852307+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6852286+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1496 - }, - "imageDetail": { - "width": 7090, - "height": 3532 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 89282, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.6876058+00:00", - "fileLastModified": "2025-07-14T09:31:01.6876061+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6876063+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6876041+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1497 - }, - "imageDetail": { - "width": 878, - "height": 9814 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 99784, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.6893584+00:00", - "fileLastModified": "2025-07-14T09:31:01.6893587+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6893588+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6893569+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1498 - }, - "imageDetail": { - "width": 4081, - "height": 2786 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 41710, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.6916565+00:00", - "fileLastModified": "2025-07-14T09:31:01.6916567+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6916569+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6916546+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1499 - }, - "imageDetail": { - "width": 6332, - "height": 3634 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 30355, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6934837+00:00", - "fileLastModified": "2025-07-14T09:31:01.6934839+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6934841+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6934822+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1500 - }, - "imageDetail": { - "width": 4275, - "height": 7173 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88804, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.695312+00:00", - "fileLastModified": "2025-07-14T09:31:01.6953123+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6953105+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1501 - }, - "imageDetail": { - "width": 7290, - "height": 2463 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 84739, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.6972476+00:00", - "fileLastModified": "2025-07-14T09:31:01.6972479+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6972426+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1502 - }, - "imageDetail": { - "width": 2527, - "height": 4698 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 30987, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.699312+00:00", - "fileLastModified": "2025-07-14T09:31:01.6993122+00:00", - "fileLastViewed": "2025-07-14T09:31:01.6993124+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.6993104+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1503 - }, - "imageDetail": { - "width": 5572, - "height": 8040 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53580, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7012502+00:00", - "fileLastModified": "2025-07-14T09:31:01.7012504+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7012487+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1504 - }, - "imageDetail": { - "width": 9010, - "height": 5254 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 75135, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7030607+00:00", - "fileLastModified": "2025-07-14T09:31:01.7030609+00:00", - "fileLastViewed": "2025-07-14T09:31:01.703061+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7030591+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1505 - }, - "imageDetail": { - "width": 7093, - "height": 8628 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 34989, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.7053357+00:00", - "fileLastModified": "2025-07-14T09:31:01.7053359+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7053342+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1506 - }, - "imageDetail": { - "width": 4349, - "height": 5903 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44618, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7072566+00:00", - "fileLastModified": "2025-07-14T09:31:01.7072568+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7072551+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1507 - }, - "imageDetail": { - "width": 637, - "height": 8628 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 72684, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7090416+00:00", - "fileLastModified": "2025-07-14T09:31:01.7090419+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.70904+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1508 - }, - "imageDetail": { - "width": 2038, - "height": 9555 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 61262, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7107631+00:00", - "fileLastModified": "2025-07-14T09:31:01.7107634+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7107617+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1509 - }, - "imageDetail": { - "width": 9703, - "height": 9723 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94245, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7125827+00:00", - "fileLastModified": "2025-07-14T09:31:01.7125831+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7125833+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7125812+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1510 - }, - "imageDetail": { - "width": 292, - "height": 8040 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 69019, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7143091+00:00", - "fileLastModified": "2025-07-14T09:31:01.7143094+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7143077+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1511 - }, - "imageDetail": { - "width": 9839, - "height": 4411 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 77035, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7161602+00:00", - "fileLastModified": "2025-07-14T09:31:01.7161604+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7161607+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7161587+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1512 - }, - "imageDetail": { - "width": 8257, - "height": 8945 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87774, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.717825+00:00", - "fileLastModified": "2025-07-14T09:31:01.7178253+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7178255+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7178236+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1513 - }, - "imageDetail": { - "width": 8028, - "height": 3950 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 84838, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7194565+00:00", - "fileLastModified": "2025-07-14T09:31:01.7194567+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7194568+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7194549+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1514 - }, - "imageDetail": { - "width": 8087, - "height": 9946 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80760, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7220051+00:00", - "fileLastModified": "2025-07-14T09:31:01.7220052+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7220054+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7220032+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1515 - }, - "imageDetail": { - "width": 1139, - "height": 8199 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 71760, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7235281+00:00", - "fileLastModified": "2025-07-14T09:31:01.7235283+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7235266+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1516 - }, - "imageDetail": { - "width": 194, - "height": 8897 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40298, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7249759+00:00", - "fileLastModified": "2025-07-14T09:31:01.7249761+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7249762+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7249749+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1517 - }, - "imageDetail": { - "width": 4937, - "height": 2569 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82654, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7263966+00:00", - "fileLastModified": "2025-07-14T09:31:01.7263968+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7263957+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1518 - }, - "imageDetail": { - "width": 8489, - "height": 5172 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 56668, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7277967+00:00", - "fileLastModified": "2025-07-14T09:31:01.7277969+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7277957+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1519 - }, - "imageDetail": { - "width": 7964, - "height": 3274 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 50460, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.729171+00:00", - "fileLastModified": "2025-07-14T09:31:01.7291712+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.72917+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1520 - }, - "imageDetail": { - "width": 3137, - "height": 5897 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 67943, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7305141+00:00", - "fileLastModified": "2025-07-14T09:31:01.7305143+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.730513+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1521 - }, - "imageDetail": { - "width": 917, - "height": 9841 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46868, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7319407+00:00", - "fileLastModified": "2025-07-14T09:31:01.7319408+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7319396+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1522 - }, - "imageDetail": { - "width": 7914, - "height": 2786 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69769, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7332875+00:00", - "fileLastModified": "2025-07-14T09:31:01.7332877+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7332878+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7332865+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1523 - }, - "imageDetail": { - "width": 4770, - "height": 5703 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 81053, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7351438+00:00", - "fileLastModified": "2025-07-14T09:31:01.735144+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7351441+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7351425+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1524 - }, - "imageDetail": { - "width": 6324, - "height": 4139 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 62600, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7366842+00:00", - "fileLastModified": "2025-07-14T09:31:01.7366845+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7366819+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1525 - }, - "imageDetail": { - "width": 1358, - "height": 8657 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 27106, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7389665+00:00", - "fileLastModified": "2025-07-14T09:31:01.7389667+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7389651+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1526 - }, - "imageDetail": { - "width": 838, - "height": 4646 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 28475, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.740331+00:00", - "fileLastModified": "2025-07-14T09:31:01.7403312+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7403313+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7403299+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1527 - }, - "imageDetail": { - "width": 9127, - "height": 8083 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34325, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7416576+00:00", - "fileLastModified": "2025-07-14T09:31:01.7416578+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7416579+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7416566+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1528 - }, - "imageDetail": { - "width": 9736, - "height": 2703 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 84945, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.742985+00:00", - "fileLastModified": "2025-07-14T09:31:01.7429853+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7429733+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1529 - }, - "imageDetail": { - "width": 6483, - "height": 7835 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61693, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7442728+00:00", - "fileLastModified": "2025-07-14T09:31:01.744273+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7442719+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1530 - }, - "imageDetail": { - "width": 9028, - "height": 2306 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 95335, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7455878+00:00", - "fileLastModified": "2025-07-14T09:31:01.745588+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7455868+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1531 - }, - "imageDetail": { - "width": 4059, - "height": 7370 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 78676, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7473955+00:00", - "fileLastModified": "2025-07-14T09:31:01.7473957+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7473958+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7473946+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1532 - }, - "imageDetail": { - "width": 9471, - "height": 7598 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44247, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7487742+00:00", - "fileLastModified": "2025-07-14T09:31:01.7487744+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7487732+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1533 - }, - "imageDetail": { - "width": 626, - "height": 6655 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 63618, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.7501334+00:00", - "fileLastModified": "2025-07-14T09:31:01.7501335+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7501324+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1534 - }, - "imageDetail": { - "width": 6865, - "height": 2957 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71003, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7514439+00:00", - "fileLastModified": "2025-07-14T09:31:01.7514441+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7514442+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7514429+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1535 - }, - "imageDetail": { - "width": 7323, - "height": 7892 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 50453, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7530072+00:00", - "fileLastModified": "2025-07-14T09:31:01.7530074+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7530059+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1536 - }, - "imageDetail": { - "width": 4523, - "height": 8301 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64733, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7545826+00:00", - "fileLastModified": "2025-07-14T09:31:01.7545828+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7545811+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1537 - }, - "imageDetail": { - "width": 1723, - "height": 7640 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96819, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7559861+00:00", - "fileLastModified": "2025-07-14T09:31:01.7559863+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7559851+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1538 - }, - "imageDetail": { - "width": 8084, - "height": 3948 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80119, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7573895+00:00", - "fileLastModified": "2025-07-14T09:31:01.7573897+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7573884+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1539 - }, - "imageDetail": { - "width": 9760, - "height": 2012 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64213, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7587756+00:00", - "fileLastModified": "2025-07-14T09:31:01.7587758+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7587745+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1540 - }, - "imageDetail": { - "width": 150, - "height": 2720 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 44300, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.760687+00:00", - "fileLastModified": "2025-07-14T09:31:01.7606872+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7606859+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1541 - }, - "imageDetail": { - "width": 1199, - "height": 4042 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63445, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7620145+00:00", - "fileLastModified": "2025-07-14T09:31:01.7620147+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7620135+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1542 - }, - "imageDetail": { - "width": 1573, - "height": 8085 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 81936, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7633837+00:00", - "fileLastModified": "2025-07-14T09:31:01.7633839+00:00", - "fileLastViewed": "2025-07-14T09:31:01.763384+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7633827+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1543 - }, - "imageDetail": { - "width": 4561, - "height": 3730 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45529, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7647125+00:00", - "fileLastModified": "2025-07-14T09:31:01.7647127+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7647107+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1544 - }, - "imageDetail": { - "width": 8623, - "height": 5436 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 93614, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7660831+00:00", - "fileLastModified": "2025-07-14T09:31:01.7660833+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7660834+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7660822+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1545 - }, - "imageDetail": { - "width": 3753, - "height": 4963 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 94475, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7673489+00:00", - "fileLastModified": "2025-07-14T09:31:01.767349+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7673492+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.767348+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1546 - }, - "imageDetail": { - "width": 7006, - "height": 2987 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 45390, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7691739+00:00", - "fileLastModified": "2025-07-14T09:31:01.7691741+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7691726+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1547 - }, - "imageDetail": { - "width": 4649, - "height": 2808 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 61147, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.7705517+00:00", - "fileLastModified": "2025-07-14T09:31:01.7705519+00:00", - "fileLastViewed": "2025-07-14T09:31:01.770552+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7705507+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1548 - }, - "imageDetail": { - "width": 601, - "height": 4977 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43289, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7723809+00:00", - "fileLastModified": "2025-07-14T09:31:01.7723811+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7723812+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.77238+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1549 - }, - "imageDetail": { - "width": 4709, - "height": 5479 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89508, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7739339+00:00", - "fileLastModified": "2025-07-14T09:31:01.7739341+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7739328+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1550 - }, - "imageDetail": { - "width": 5501, - "height": 9741 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 85037, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7752969+00:00", - "fileLastModified": "2025-07-14T09:31:01.7752971+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7752972+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7752959+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1551 - }, - "imageDetail": { - "width": 7273, - "height": 4909 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 96690, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7767368+00:00", - "fileLastModified": "2025-07-14T09:31:01.776737+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7767357+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1552 - }, - "imageDetail": { - "width": 4243, - "height": 9955 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71285, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7782873+00:00", - "fileLastModified": "2025-07-14T09:31:01.7782875+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7782876+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7782863+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1553 - }, - "imageDetail": { - "width": 2336, - "height": 5635 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44342, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7799791+00:00", - "fileLastModified": "2025-07-14T09:31:01.7799793+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7799781+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1554 - }, - "imageDetail": { - "width": 3110, - "height": 5719 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 57537, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.781711+00:00", - "fileLastModified": "2025-07-14T09:31:01.7817111+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7817113+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7817099+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1555 - }, - "imageDetail": { - "width": 6192, - "height": 2369 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 46886, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7834309+00:00", - "fileLastModified": "2025-07-14T09:31:01.783431+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7834294+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1556 - }, - "imageDetail": { - "width": 8553, - "height": 9457 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 22458, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7848042+00:00", - "fileLastModified": "2025-07-14T09:31:01.7848043+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7848031+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1557 - }, - "imageDetail": { - "width": 8121, - "height": 3472 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68053, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7866208+00:00", - "fileLastModified": "2025-07-14T09:31:01.786621+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7866198+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1558 - }, - "imageDetail": { - "width": 5554, - "height": 3700 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 25124, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7880896+00:00", - "fileLastModified": "2025-07-14T09:31:01.7880898+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7880899+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7880882+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1559 - }, - "imageDetail": { - "width": 1110, - "height": 9452 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 22687, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.7895463+00:00", - "fileLastModified": "2025-07-14T09:31:01.7895465+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7895453+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1560 - }, - "imageDetail": { - "width": 5830, - "height": 2617 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 55686, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7908954+00:00", - "fileLastModified": "2025-07-14T09:31:01.7908956+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7908944+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1561 - }, - "imageDetail": { - "width": 6383, - "height": 2623 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 92424, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.7922077+00:00", - "fileLastModified": "2025-07-14T09:31:01.7922079+00:00", - "fileLastViewed": "2025-07-14T09:31:01.792208+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7922067+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1562 - }, - "imageDetail": { - "width": 1498, - "height": 9341 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 78266, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7935197+00:00", - "fileLastModified": "2025-07-14T09:31:01.7935199+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7935187+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1563 - }, - "imageDetail": { - "width": 9567, - "height": 5329 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 54569, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7948138+00:00", - "fileLastModified": "2025-07-14T09:31:01.794814+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7948128+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1564 - }, - "imageDetail": { - "width": 4760, - "height": 7620 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 93217, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.7961983+00:00", - "fileLastModified": "2025-07-14T09:31:01.7961985+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7961986+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7961973+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1565 - }, - "imageDetail": { - "width": 7472, - "height": 5520 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 97338, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.7980568+00:00", - "fileLastModified": "2025-07-14T09:31:01.798057+00:00", - "fileLastViewed": "2025-07-14T09:31:01.7980571+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7980559+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1566 - }, - "imageDetail": { - "width": 7957, - "height": 2782 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74330, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.7996566+00:00", - "fileLastModified": "2025-07-14T09:31:01.7996568+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.7996555+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1567 - }, - "imageDetail": { - "width": 1698, - "height": 5551 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 48865, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.801107+00:00", - "fileLastModified": "2025-07-14T09:31:01.8011072+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8011044+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1568 - }, - "imageDetail": { - "width": 4760, - "height": 5245 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 37050, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8025933+00:00", - "fileLastModified": "2025-07-14T09:31:01.8025934+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8025923+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1569 - }, - "imageDetail": { - "width": 4382, - "height": 3607 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53465, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8039232+00:00", - "fileLastModified": "2025-07-14T09:31:01.8039234+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8039223+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1570 - }, - "imageDetail": { - "width": 4603, - "height": 8604 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34226, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.805322+00:00", - "fileLastModified": "2025-07-14T09:31:01.8053222+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8053223+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8053211+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1571 - }, - "imageDetail": { - "width": 1937, - "height": 5223 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79496, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8066631+00:00", - "fileLastModified": "2025-07-14T09:31:01.8066633+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8066622+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1572 - }, - "imageDetail": { - "width": 4019, - "height": 6975 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65183, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8079898+00:00", - "fileLastModified": "2025-07-14T09:31:01.8079899+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8079888+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1573 - }, - "imageDetail": { - "width": 7319, - "height": 3244 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 92552, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8100565+00:00", - "fileLastModified": "2025-07-14T09:31:01.8100566+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8100552+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1574 - }, - "imageDetail": { - "width": 2950, - "height": 5398 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21159, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.811395+00:00", - "fileLastModified": "2025-07-14T09:31:01.8113952+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.811394+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1575 - }, - "imageDetail": { - "width": 7231, - "height": 7883 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 69346, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8127128+00:00", - "fileLastModified": "2025-07-14T09:31:01.8127129+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8127118+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1576 - }, - "imageDetail": { - "width": 5989, - "height": 3274 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 22603, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8140253+00:00", - "fileLastModified": "2025-07-14T09:31:01.8140255+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8140243+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1577 - }, - "imageDetail": { - "width": 7324, - "height": 2418 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 34430, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8160572+00:00", - "fileLastModified": "2025-07-14T09:31:01.8160574+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8160558+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1578 - }, - "imageDetail": { - "width": 5115, - "height": 9034 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 73025, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.818012+00:00", - "fileLastModified": "2025-07-14T09:31:01.8180122+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8180123+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8180106+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1579 - }, - "imageDetail": { - "width": 4235, - "height": 6600 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 70535, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.819474+00:00", - "fileLastModified": "2025-07-14T09:31:01.8194742+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8194743+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8194729+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1580 - }, - "imageDetail": { - "width": 5153, - "height": 3954 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 94554, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8208552+00:00", - "fileLastModified": "2025-07-14T09:31:01.8208554+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8208542+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1581 - }, - "imageDetail": { - "width": 9305, - "height": 5860 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43365, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.822829+00:00", - "fileLastModified": "2025-07-14T09:31:01.8228292+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8228293+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8228276+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1582 - }, - "imageDetail": { - "width": 5076, - "height": 9906 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 65826, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.82421+00:00", - "fileLastModified": "2025-07-14T09:31:01.8242102+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8242103+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.824209+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1583 - }, - "imageDetail": { - "width": 8645, - "height": 8963 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79221, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8255417+00:00", - "fileLastModified": "2025-07-14T09:31:01.8255419+00:00", - "fileLastViewed": "2025-07-14T09:31:01.825542+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8255407+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1584 - }, - "imageDetail": { - "width": 7941, - "height": 7998 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64294, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.826883+00:00", - "fileLastModified": "2025-07-14T09:31:01.8268832+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8268833+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.826882+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1585 - }, - "imageDetail": { - "width": 5953, - "height": 4086 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 22323, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8283703+00:00", - "fileLastModified": "2025-07-14T09:31:01.8283705+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8283706+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8283693+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1586 - }, - "imageDetail": { - "width": 986, - "height": 7416 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 42974, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8297321+00:00", - "fileLastModified": "2025-07-14T09:31:01.8297323+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8297324+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8297311+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1587 - }, - "imageDetail": { - "width": 7015, - "height": 7365 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31762, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8316182+00:00", - "fileLastModified": "2025-07-14T09:31:01.8316184+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8316164+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1588 - }, - "imageDetail": { - "width": 8941, - "height": 2781 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47006, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.83312+00:00", - "fileLastModified": "2025-07-14T09:31:01.8331202+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8331188+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1589 - }, - "imageDetail": { - "width": 3907, - "height": 3507 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 20758, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8351435+00:00", - "fileLastModified": "2025-07-14T09:31:01.8351437+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8351438+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8351422+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1590 - }, - "imageDetail": { - "width": 3184, - "height": 5113 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23707, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8366651+00:00", - "fileLastModified": "2025-07-14T09:31:01.8366653+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8366641+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1591 - }, - "imageDetail": { - "width": 7730, - "height": 6651 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 41997, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.838458+00:00", - "fileLastModified": "2025-07-14T09:31:01.8384582+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8384568+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1592 - }, - "imageDetail": { - "width": 6811, - "height": 3221 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 78807, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8401373+00:00", - "fileLastModified": "2025-07-14T09:31:01.8401375+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.840136+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1593 - }, - "imageDetail": { - "width": 6482, - "height": 2382 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 73411, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8417036+00:00", - "fileLastModified": "2025-07-14T09:31:01.8417038+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8417023+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1594 - }, - "imageDetail": { - "width": 5356, - "height": 3522 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28956, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.843838+00:00", - "fileLastModified": "2025-07-14T09:31:01.8438382+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8438383+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8438364+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1595 - }, - "imageDetail": { - "width": 2653, - "height": 7745 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 22033, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8454396+00:00", - "fileLastModified": "2025-07-14T09:31:01.8454398+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8454399+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8454385+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1596 - }, - "imageDetail": { - "width": 9641, - "height": 5042 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 77837, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.847276+00:00", - "fileLastModified": "2025-07-14T09:31:01.8472762+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8472764+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.847275+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1597 - }, - "imageDetail": { - "width": 2801, - "height": 4444 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 90142, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8498639+00:00", - "fileLastModified": "2025-07-14T09:31:01.8498641+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8498643+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8498623+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1598 - }, - "imageDetail": { - "width": 4192, - "height": 2240 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 52247, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8518078+00:00", - "fileLastModified": "2025-07-14T09:31:01.851808+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8518081+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8518065+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1599 - }, - "imageDetail": { - "width": 9657, - "height": 7339 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 33653, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.853642+00:00", - "fileLastModified": "2025-07-14T09:31:01.8536422+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8536423+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8536409+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1600 - }, - "imageDetail": { - "width": 2249, - "height": 7061 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 25274, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8554472+00:00", - "fileLastModified": "2025-07-14T09:31:01.8554474+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8554461+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1601 - }, - "imageDetail": { - "width": 8858, - "height": 7272 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 40348, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8570075+00:00", - "fileLastModified": "2025-07-14T09:31:01.8570077+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8570066+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1602 - }, - "imageDetail": { - "width": 5147, - "height": 8451 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59464, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8585062+00:00", - "fileLastModified": "2025-07-14T09:31:01.8585064+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8585066+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8585052+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1603 - }, - "imageDetail": { - "width": 1297, - "height": 5164 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 91117, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8600885+00:00", - "fileLastModified": "2025-07-14T09:31:01.8600887+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8600888+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8600876+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1604 - }, - "imageDetail": { - "width": 4972, - "height": 8411 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69556, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8627886+00:00", - "fileLastModified": "2025-07-14T09:31:01.8627889+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.862787+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1605 - }, - "imageDetail": { - "width": 1751, - "height": 9837 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 53466, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.864606+00:00", - "fileLastModified": "2025-07-14T09:31:01.8646062+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8646048+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1606 - }, - "imageDetail": { - "width": 8110, - "height": 7631 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 30222, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8663924+00:00", - "fileLastModified": "2025-07-14T09:31:01.8663929+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8663912+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1607 - }, - "imageDetail": { - "width": 8745, - "height": 4243 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82061, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8681062+00:00", - "fileLastModified": "2025-07-14T09:31:01.8681064+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8681052+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1608 - }, - "imageDetail": { - "width": 7433, - "height": 8694 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98558, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8697472+00:00", - "fileLastModified": "2025-07-14T09:31:01.8697474+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8697476+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8697452+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1609 - }, - "imageDetail": { - "width": 5027, - "height": 2571 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 21393, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8712998+00:00", - "fileLastModified": "2025-07-14T09:31:01.8712999+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8713+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8712987+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1610 - }, - "imageDetail": { - "width": 4301, - "height": 9361 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 23815, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8728096+00:00", - "fileLastModified": "2025-07-14T09:31:01.8728098+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8728087+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1611 - }, - "imageDetail": { - "width": 228, - "height": 6484 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44232, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8742665+00:00", - "fileLastModified": "2025-07-14T09:31:01.8742667+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8742668+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8742651+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1612 - }, - "imageDetail": { - "width": 3520, - "height": 7672 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 40498, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8763693+00:00", - "fileLastModified": "2025-07-14T09:31:01.8763695+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8763682+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1613 - }, - "imageDetail": { - "width": 6378, - "height": 2195 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 80027, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8783232+00:00", - "fileLastModified": "2025-07-14T09:31:01.8783235+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8783237+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8783222+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1614 - }, - "imageDetail": { - "width": 7770, - "height": 7295 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 72109, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8798472+00:00", - "fileLastModified": "2025-07-14T09:31:01.8798474+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8798461+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1615 - }, - "imageDetail": { - "width": 7942, - "height": 8677 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64069, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.881624+00:00", - "fileLastModified": "2025-07-14T09:31:01.8816242+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8816243+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8816227+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1616 - }, - "imageDetail": { - "width": 1818, - "height": 6153 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37255, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8831738+00:00", - "fileLastModified": "2025-07-14T09:31:01.883174+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8831728+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1617 - }, - "imageDetail": { - "width": 898, - "height": 9603 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 62080, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8846227+00:00", - "fileLastModified": "2025-07-14T09:31:01.8846229+00:00", - "fileLastViewed": "2025-07-14T09:31:01.884623+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8846218+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1618 - }, - "imageDetail": { - "width": 1747, - "height": 5775 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 63794, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8862189+00:00", - "fileLastModified": "2025-07-14T09:31:01.8862191+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8862176+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1619 - }, - "imageDetail": { - "width": 272, - "height": 6711 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24904, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8877065+00:00", - "fileLastModified": "2025-07-14T09:31:01.8877067+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8877068+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8877055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1620 - }, - "imageDetail": { - "width": 7415, - "height": 3835 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 86006, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8897365+00:00", - "fileLastModified": "2025-07-14T09:31:01.8897367+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8897355+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1621 - }, - "imageDetail": { - "width": 4862, - "height": 8820 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 45560, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.8913067+00:00", - "fileLastModified": "2025-07-14T09:31:01.8913069+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8913058+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1622 - }, - "imageDetail": { - "width": 942, - "height": 7004 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 45790, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.8935352+00:00", - "fileLastModified": "2025-07-14T09:31:01.8935354+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8935356+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8935338+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1623 - }, - "imageDetail": { - "width": 4405, - "height": 6985 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80995, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.8951485+00:00", - "fileLastModified": "2025-07-14T09:31:01.8951487+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8951488+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8951473+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1624 - }, - "imageDetail": { - "width": 9216, - "height": 2485 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 97052, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.8967043+00:00", - "fileLastModified": "2025-07-14T09:31:01.8967045+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8967034+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1625 - }, - "imageDetail": { - "width": 9611, - "height": 8019 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87077, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.8982737+00:00", - "fileLastModified": "2025-07-14T09:31:01.898274+00:00", - "fileLastViewed": "2025-07-14T09:31:01.8982741+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.8982727+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1626 - }, - "imageDetail": { - "width": 4954, - "height": 6320 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70913, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9000939+00:00", - "fileLastModified": "2025-07-14T09:31:01.9000941+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9000928+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1627 - }, - "imageDetail": { - "width": 5623, - "height": 6203 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 47239, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9026945+00:00", - "fileLastModified": "2025-07-14T09:31:01.9026947+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9026934+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1628 - }, - "imageDetail": { - "width": 1395, - "height": 2779 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85475, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9043022+00:00", - "fileLastModified": "2025-07-14T09:31:01.9043025+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9043026+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.904301+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1629 - }, - "imageDetail": { - "width": 5030, - "height": 8967 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50329, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9059961+00:00", - "fileLastModified": "2025-07-14T09:31:01.9059963+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9059948+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1630 - }, - "imageDetail": { - "width": 9824, - "height": 2336 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 24517, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9077091+00:00", - "fileLastModified": "2025-07-14T09:31:01.9077094+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9077073+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1631 - }, - "imageDetail": { - "width": 1976, - "height": 2442 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 43639, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9094185+00:00", - "fileLastModified": "2025-07-14T09:31:01.9094187+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9094175+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1632 - }, - "imageDetail": { - "width": 9730, - "height": 3698 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 22231, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9109743+00:00", - "fileLastModified": "2025-07-14T09:31:01.9109746+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9109747+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9109732+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1633 - }, - "imageDetail": { - "width": 960, - "height": 5147 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89055, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.912522+00:00", - "fileLastModified": "2025-07-14T09:31:01.9125222+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9125223+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.912521+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1634 - }, - "imageDetail": { - "width": 3752, - "height": 6370 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 68675, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9150902+00:00", - "fileLastModified": "2025-07-14T09:31:01.9150904+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9150889+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1635 - }, - "imageDetail": { - "width": 5588, - "height": 7887 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 25472, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9167832+00:00", - "fileLastModified": "2025-07-14T09:31:01.9167834+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9167835+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9167821+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1636 - }, - "imageDetail": { - "width": 7091, - "height": 8673 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 94493, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9183377+00:00", - "fileLastModified": "2025-07-14T09:31:01.9183379+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9183366+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1637 - }, - "imageDetail": { - "width": 3119, - "height": 6501 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23428, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9199082+00:00", - "fileLastModified": "2025-07-14T09:31:01.9199084+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9199085+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9199072+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1638 - }, - "imageDetail": { - "width": 7897, - "height": 7272 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 91758, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9215021+00:00", - "fileLastModified": "2025-07-14T09:31:01.9215023+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9215024+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9215014+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1639 - }, - "imageDetail": { - "width": 7917, - "height": 3317 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 61993, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9231237+00:00", - "fileLastModified": "2025-07-14T09:31:01.9231239+00:00", - "fileLastViewed": "2025-07-14T09:31:01.923124+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.923123+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1640 - }, - "imageDetail": { - "width": 6281, - "height": 4453 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 22377, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9253226+00:00", - "fileLastModified": "2025-07-14T09:31:01.9253231+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9253233+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9253217+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1641 - }, - "imageDetail": { - "width": 1337, - "height": 8472 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34227, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9272941+00:00", - "fileLastModified": "2025-07-14T09:31:01.9272943+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9272944+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9272934+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1642 - }, - "imageDetail": { - "width": 3350, - "height": 2331 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82812, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9295305+00:00", - "fileLastModified": "2025-07-14T09:31:01.9295307+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9295295+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1643 - }, - "imageDetail": { - "width": 6182, - "height": 8262 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 47998, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9311579+00:00", - "fileLastModified": "2025-07-14T09:31:01.9311581+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9311571+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1644 - }, - "imageDetail": { - "width": 7899, - "height": 9394 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23221, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9328194+00:00", - "fileLastModified": "2025-07-14T09:31:01.9328196+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9328187+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1645 - }, - "imageDetail": { - "width": 4930, - "height": 6640 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 70861, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9344041+00:00", - "fileLastModified": "2025-07-14T09:31:01.9344043+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9344044+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9344034+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1646 - }, - "imageDetail": { - "width": 4892, - "height": 4254 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57013, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9360402+00:00", - "fileLastModified": "2025-07-14T09:31:01.9360405+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9360406+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9360393+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1647 - }, - "imageDetail": { - "width": 8664, - "height": 9632 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66951, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9377088+00:00", - "fileLastModified": "2025-07-14T09:31:01.9377091+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9377079+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1648 - }, - "imageDetail": { - "width": 7208, - "height": 7023 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 82756, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9394479+00:00", - "fileLastModified": "2025-07-14T09:31:01.9394482+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9394467+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1649 - }, - "imageDetail": { - "width": 3121, - "height": 3729 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23382, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9426144+00:00", - "fileLastModified": "2025-07-14T09:31:01.9426146+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9426136+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1650 - }, - "imageDetail": { - "width": 9592, - "height": 6027 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 71176, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9442443+00:00", - "fileLastModified": "2025-07-14T09:31:01.9442446+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9442447+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9442436+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1651 - }, - "imageDetail": { - "width": 6198, - "height": 4956 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83317, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9458857+00:00", - "fileLastModified": "2025-07-14T09:31:01.9458859+00:00", - "fileLastViewed": "2025-07-14T09:31:01.945886+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9458849+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1652 - }, - "imageDetail": { - "width": 6283, - "height": 9581 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 25926, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9474589+00:00", - "fileLastModified": "2025-07-14T09:31:01.9474591+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9474581+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1653 - }, - "imageDetail": { - "width": 7006, - "height": 8180 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 88649, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9491774+00:00", - "fileLastModified": "2025-07-14T09:31:01.9491776+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9491777+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9491766+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1654 - }, - "imageDetail": { - "width": 2781, - "height": 9774 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69428, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9508067+00:00", - "fileLastModified": "2025-07-14T09:31:01.9508069+00:00", - "fileLastViewed": "2025-07-14T09:31:01.950807+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9508059+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1655 - }, - "imageDetail": { - "width": 6740, - "height": 8702 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 59930, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.952367+00:00", - "fileLastModified": "2025-07-14T09:31:01.9523673+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9523673+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9523663+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1656 - }, - "imageDetail": { - "width": 6287, - "height": 3379 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 26798, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.954632+00:00", - "fileLastModified": "2025-07-14T09:31:01.9546322+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9546312+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1657 - }, - "imageDetail": { - "width": 3539, - "height": 6597 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 81912, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9567872+00:00", - "fileLastModified": "2025-07-14T09:31:01.9567878+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9567879+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9567863+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1658 - }, - "imageDetail": { - "width": 424, - "height": 5783 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71716, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9583999+00:00", - "fileLastModified": "2025-07-14T09:31:01.9584001+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9584002+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9583991+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1659 - }, - "imageDetail": { - "width": 5480, - "height": 8998 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 62452, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9599806+00:00", - "fileLastModified": "2025-07-14T09:31:01.9599808+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9599797+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1660 - }, - "imageDetail": { - "width": 5134, - "height": 7577 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 41401, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9615414+00:00", - "fileLastModified": "2025-07-14T09:31:01.9615416+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9615417+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9615406+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1661 - }, - "imageDetail": { - "width": 5433, - "height": 3967 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 47218, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9630259+00:00", - "fileLastModified": "2025-07-14T09:31:01.9630261+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9630253+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1662 - }, - "imageDetail": { - "width": 3531, - "height": 5011 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44362, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9645412+00:00", - "fileLastModified": "2025-07-14T09:31:01.9645414+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9645415+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9645406+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1663 - }, - "imageDetail": { - "width": 551, - "height": 2289 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83163, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9667654+00:00", - "fileLastModified": "2025-07-14T09:31:01.9667656+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9667657+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9667647+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1664 - }, - "imageDetail": { - "width": 2051, - "height": 7240 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73584, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9685161+00:00", - "fileLastModified": "2025-07-14T09:31:01.9685163+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9685164+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9685154+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1665 - }, - "imageDetail": { - "width": 2180, - "height": 4924 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 55348, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9707217+00:00", - "fileLastModified": "2025-07-14T09:31:01.9707223+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9707194+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1666 - }, - "imageDetail": { - "width": 8556, - "height": 2822 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 38461, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9735011+00:00", - "fileLastModified": "2025-07-14T09:31:01.9735014+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9735016+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9735001+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1667 - }, - "imageDetail": { - "width": 4340, - "height": 8368 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 66564, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9752479+00:00", - "fileLastModified": "2025-07-14T09:31:01.9752482+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9752471+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1668 - }, - "imageDetail": { - "width": 9421, - "height": 3810 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92206, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9769322+00:00", - "fileLastModified": "2025-07-14T09:31:01.9769324+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9769325+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9769314+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1669 - }, - "imageDetail": { - "width": 4031, - "height": 3614 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86096, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9786467+00:00", - "fileLastModified": "2025-07-14T09:31:01.9786469+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.978646+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1670 - }, - "imageDetail": { - "width": 9571, - "height": 4693 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 92817, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9811674+00:00", - "fileLastModified": "2025-07-14T09:31:01.9811676+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9811677+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9811667+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1671 - }, - "imageDetail": { - "width": 6438, - "height": 8810 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31523, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9829065+00:00", - "fileLastModified": "2025-07-14T09:31:01.9829067+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9829068+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9829058+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1672 - }, - "imageDetail": { - "width": 1589, - "height": 6454 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41188, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9846369+00:00", - "fileLastModified": "2025-07-14T09:31:01.9846371+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9846362+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1673 - }, - "imageDetail": { - "width": 418, - "height": 2858 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 46212, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:01.9868334+00:00", - "fileLastModified": "2025-07-14T09:31:01.9868337+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9868338+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9868325+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1674 - }, - "imageDetail": { - "width": 5701, - "height": 2275 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60921, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.988601+00:00", - "fileLastModified": "2025-07-14T09:31:01.9886013+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9886013+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9886003+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1675 - }, - "imageDetail": { - "width": 4948, - "height": 9117 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 57096, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:01.9904033+00:00", - "fileLastModified": "2025-07-14T09:31:01.9904036+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9904027+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1676 - }, - "imageDetail": { - "width": 3012, - "height": 8503 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 72695, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9922012+00:00", - "fileLastModified": "2025-07-14T09:31:01.9922015+00:00", - "fileLastViewed": "2025-07-14T09:31:01.9922015+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9922005+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1677 - }, - "imageDetail": { - "width": 403, - "height": 5671 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 90622, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:01.9946241+00:00", - "fileLastModified": "2025-07-14T09:31:01.9946244+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9946233+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1678 - }, - "imageDetail": { - "width": 4963, - "height": 9873 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 42609, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:01.9966578+00:00", - "fileLastModified": "2025-07-14T09:31:01.9966581+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9966566+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1679 - }, - "imageDetail": { - "width": 357, - "height": 7754 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 39449, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:01.9985122+00:00", - "fileLastModified": "2025-07-14T09:31:01.9985124+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:01.9985115+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1680 - }, - "imageDetail": { - "width": 9029, - "height": 3935 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 48285, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0002245+00:00", - "fileLastModified": "2025-07-14T09:31:02.0002248+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0002249+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0002238+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1681 - }, - "imageDetail": { - "width": 9555, - "height": 5816 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96839, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0022673+00:00", - "fileLastModified": "2025-07-14T09:31:02.0022675+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0022666+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1682 - }, - "imageDetail": { - "width": 7718, - "height": 9725 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 54195, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0039916+00:00", - "fileLastModified": "2025-07-14T09:31:02.0039918+00:00", - "fileLastViewed": "2025-07-14T09:31:02.003992+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0039904+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1683 - }, - "imageDetail": { - "width": 4712, - "height": 7517 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 35466, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0057232+00:00", - "fileLastModified": "2025-07-14T09:31:02.0057234+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0057235+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0057225+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1684 - }, - "imageDetail": { - "width": 6153, - "height": 4866 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35981, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0079759+00:00", - "fileLastModified": "2025-07-14T09:31:02.0079761+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0079751+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1685 - }, - "imageDetail": { - "width": 9906, - "height": 5115 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 68424, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0096852+00:00", - "fileLastModified": "2025-07-14T09:31:02.0096855+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0096856+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0096845+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1686 - }, - "imageDetail": { - "width": 4835, - "height": 2367 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64687, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.011478+00:00", - "fileLastModified": "2025-07-14T09:31:02.0114782+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0114769+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1687 - }, - "imageDetail": { - "width": 470, - "height": 7869 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 60564, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0131393+00:00", - "fileLastModified": "2025-07-14T09:31:02.0131395+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0131396+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0131385+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1688 - }, - "imageDetail": { - "width": 8367, - "height": 4566 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 55439, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0151004+00:00", - "fileLastModified": "2025-07-14T09:31:02.0151007+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0151008+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0150996+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1689 - }, - "imageDetail": { - "width": 3532, - "height": 3623 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 93362, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0169737+00:00", - "fileLastModified": "2025-07-14T09:31:02.0169741+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0169727+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1690 - }, - "imageDetail": { - "width": 402, - "height": 9309 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 86862, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0187497+00:00", - "fileLastModified": "2025-07-14T09:31:02.0187499+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0187489+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1691 - }, - "imageDetail": { - "width": 574, - "height": 3461 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 25012, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0210711+00:00", - "fileLastModified": "2025-07-14T09:31:02.0210713+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0210704+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1692 - }, - "imageDetail": { - "width": 8512, - "height": 6771 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 31842, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0227531+00:00", - "fileLastModified": "2025-07-14T09:31:02.0227534+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0227524+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1693 - }, - "imageDetail": { - "width": 4387, - "height": 9092 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 82787, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0243569+00:00", - "fileLastModified": "2025-07-14T09:31:02.0243571+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0243562+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1694 - }, - "imageDetail": { - "width": 3905, - "height": 8099 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 29967, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0259793+00:00", - "fileLastModified": "2025-07-14T09:31:02.0259795+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0259796+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0259787+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1695 - }, - "imageDetail": { - "width": 811, - "height": 6883 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 48029, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.02777+00:00", - "fileLastModified": "2025-07-14T09:31:02.0277702+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0277693+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1696 - }, - "imageDetail": { - "width": 1180, - "height": 6682 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83851, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0294964+00:00", - "fileLastModified": "2025-07-14T09:31:02.0294966+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0294861+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1697 - }, - "imageDetail": { - "width": 8824, - "height": 5123 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 65127, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0317796+00:00", - "fileLastModified": "2025-07-14T09:31:02.0317799+00:00", - "fileLastViewed": "2025-07-14T09:31:02.03178+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0317789+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1698 - }, - "imageDetail": { - "width": 2945, - "height": 5439 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 27215, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0338576+00:00", - "fileLastModified": "2025-07-14T09:31:02.0338578+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0338568+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1699 - }, - "imageDetail": { - "width": 6314, - "height": 7614 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 38830, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0358671+00:00", - "fileLastModified": "2025-07-14T09:31:02.0358673+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0358674+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0358659+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1700 - }, - "imageDetail": { - "width": 2757, - "height": 8763 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 71728, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0376964+00:00", - "fileLastModified": "2025-07-14T09:31:02.0376966+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0376952+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1701 - }, - "imageDetail": { - "width": 6533, - "height": 4426 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 30797, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0393248+00:00", - "fileLastModified": "2025-07-14T09:31:02.0393251+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0393252+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0393242+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1702 - }, - "imageDetail": { - "width": 3668, - "height": 7226 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27614, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0412451+00:00", - "fileLastModified": "2025-07-14T09:31:02.0412453+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0412454+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.041244+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1703 - }, - "imageDetail": { - "width": 6553, - "height": 5192 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 53956, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.042894+00:00", - "fileLastModified": "2025-07-14T09:31:02.0428942+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0428943+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0428933+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1704 - }, - "imageDetail": { - "width": 9751, - "height": 8172 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44575, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0450682+00:00", - "fileLastModified": "2025-07-14T09:31:02.0450684+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0450675+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1705 - }, - "imageDetail": { - "width": 4789, - "height": 8257 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 58334, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0465844+00:00", - "fileLastModified": "2025-07-14T09:31:02.0465846+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0465846+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0465836+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1706 - }, - "imageDetail": { - "width": 8437, - "height": 7583 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 74715, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0486247+00:00", - "fileLastModified": "2025-07-14T09:31:02.0486249+00:00", - "fileLastViewed": "2025-07-14T09:31:02.048625+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0486237+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1707 - }, - "imageDetail": { - "width": 5964, - "height": 7564 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 96587, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0504057+00:00", - "fileLastModified": "2025-07-14T09:31:02.0504061+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0504062+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0504049+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1708 - }, - "imageDetail": { - "width": 9990, - "height": 3982 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 96328, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0522648+00:00", - "fileLastModified": "2025-07-14T09:31:02.052265+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.052264+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1709 - }, - "imageDetail": { - "width": 3929, - "height": 3724 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59480, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0541338+00:00", - "fileLastModified": "2025-07-14T09:31:02.054134+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0541327+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1710 - }, - "imageDetail": { - "width": 4800, - "height": 8254 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87421, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0567502+00:00", - "fileLastModified": "2025-07-14T09:31:02.0567504+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0567495+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1711 - }, - "imageDetail": { - "width": 5055, - "height": 5996 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89837, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0585671+00:00", - "fileLastModified": "2025-07-14T09:31:02.0585673+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0585674+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0585662+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1712 - }, - "imageDetail": { - "width": 4275, - "height": 9200 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 55509, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0603531+00:00", - "fileLastModified": "2025-07-14T09:31:02.0603533+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0603534+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0603523+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1713 - }, - "imageDetail": { - "width": 8214, - "height": 5802 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 61477, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0620058+00:00", - "fileLastModified": "2025-07-14T09:31:02.062006+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0620051+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1714 - }, - "imageDetail": { - "width": 5319, - "height": 8814 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 54620, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0640685+00:00", - "fileLastModified": "2025-07-14T09:31:02.0640687+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0640661+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1715 - }, - "imageDetail": { - "width": 6312, - "height": 4092 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 75201, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.065843+00:00", - "fileLastModified": "2025-07-14T09:31:02.0658432+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0658433+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0658423+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1716 - }, - "imageDetail": { - "width": 6670, - "height": 9986 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 41463, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0676807+00:00", - "fileLastModified": "2025-07-14T09:31:02.0676809+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0676799+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1717 - }, - "imageDetail": { - "width": 1820, - "height": 6339 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 71693, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0702091+00:00", - "fileLastModified": "2025-07-14T09:31:02.0702093+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0702084+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1718 - }, - "imageDetail": { - "width": 597, - "height": 6123 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80881, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.071801+00:00", - "fileLastModified": "2025-07-14T09:31:02.0718013+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0718004+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1719 - }, - "imageDetail": { - "width": 8424, - "height": 4980 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74023, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.073513+00:00", - "fileLastModified": "2025-07-14T09:31:02.0735133+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0735134+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0735124+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1720 - }, - "imageDetail": { - "width": 3084, - "height": 7999 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 66684, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0752192+00:00", - "fileLastModified": "2025-07-14T09:31:02.0752195+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0752196+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0752185+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1721 - }, - "imageDetail": { - "width": 8527, - "height": 5969 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 23790, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.076888+00:00", - "fileLastModified": "2025-07-14T09:31:02.0768882+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0768883+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0768874+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1722 - }, - "imageDetail": { - "width": 4242, - "height": 6154 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 52527, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0784114+00:00", - "fileLastModified": "2025-07-14T09:31:02.0784116+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0784117+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0784107+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1723 - }, - "imageDetail": { - "width": 4854, - "height": 9512 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 46176, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0801206+00:00", - "fileLastModified": "2025-07-14T09:31:02.0801208+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0801209+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0801199+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1724 - }, - "imageDetail": { - "width": 7041, - "height": 9445 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 45268, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0822856+00:00", - "fileLastModified": "2025-07-14T09:31:02.0822858+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0822847+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1725 - }, - "imageDetail": { - "width": 3915, - "height": 3767 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 67516, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0839364+00:00", - "fileLastModified": "2025-07-14T09:31:02.0839366+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0839357+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1726 - }, - "imageDetail": { - "width": 792, - "height": 4358 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 96356, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0855623+00:00", - "fileLastModified": "2025-07-14T09:31:02.0855625+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0855616+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1727 - }, - "imageDetail": { - "width": 1581, - "height": 3729 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 41542, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0871266+00:00", - "fileLastModified": "2025-07-14T09:31:02.0871268+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0871268+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0871259+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1728 - }, - "imageDetail": { - "width": 2497, - "height": 5384 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 86506, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0886985+00:00", - "fileLastModified": "2025-07-14T09:31:02.0886987+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0886988+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0886978+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1729 - }, - "imageDetail": { - "width": 3648, - "height": 7813 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 90827, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.0902311+00:00", - "fileLastModified": "2025-07-14T09:31:02.0902313+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0902314+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0902304+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1730 - }, - "imageDetail": { - "width": 5501, - "height": 9596 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 56045, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.0923797+00:00", - "fileLastModified": "2025-07-14T09:31:02.0923799+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0923789+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1731 - }, - "imageDetail": { - "width": 5086, - "height": 6197 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 49800, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.093959+00:00", - "fileLastModified": "2025-07-14T09:31:02.0939592+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0939583+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1732 - }, - "imageDetail": { - "width": 1624, - "height": 5050 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 45751, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.0962394+00:00", - "fileLastModified": "2025-07-14T09:31:02.0962397+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0962399+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0962385+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1733 - }, - "imageDetail": { - "width": 7020, - "height": 2391 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 54128, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.0980559+00:00", - "fileLastModified": "2025-07-14T09:31:02.0980562+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.098055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1734 - }, - "imageDetail": { - "width": 3877, - "height": 9819 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 69886, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.0997251+00:00", - "fileLastModified": "2025-07-14T09:31:02.0997253+00:00", - "fileLastViewed": "2025-07-14T09:31:02.0997254+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.0997243+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1735 - }, - "imageDetail": { - "width": 8677, - "height": 5132 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34129, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1012752+00:00", - "fileLastModified": "2025-07-14T09:31:02.1012755+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1012746+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1736 - }, - "imageDetail": { - "width": 2466, - "height": 5340 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 62170, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.1034809+00:00", - "fileLastModified": "2025-07-14T09:31:02.1034811+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1034803+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1737 - }, - "imageDetail": { - "width": 4105, - "height": 8974 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59320, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1050588+00:00", - "fileLastModified": "2025-07-14T09:31:02.105059+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1050581+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1738 - }, - "imageDetail": { - "width": 5792, - "height": 3494 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 81316, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1067312+00:00", - "fileLastModified": "2025-07-14T09:31:02.1067314+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1067315+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1067304+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1739 - }, - "imageDetail": { - "width": 9049, - "height": 3418 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83296, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1086238+00:00", - "fileLastModified": "2025-07-14T09:31:02.108624+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1086231+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1740 - }, - "imageDetail": { - "width": 4371, - "height": 2671 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 84116, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1104+00:00", - "fileLastModified": "2025-07-14T09:31:02.1104003+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1103989+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1741 - }, - "imageDetail": { - "width": 5722, - "height": 8924 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37878, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1122985+00:00", - "fileLastModified": "2025-07-14T09:31:02.1122988+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1122978+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1742 - }, - "imageDetail": { - "width": 6229, - "height": 5605 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 91934, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.114024+00:00", - "fileLastModified": "2025-07-14T09:31:02.1140243+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1140244+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1140234+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1743 - }, - "imageDetail": { - "width": 615, - "height": 7072 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87820, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.1162766+00:00", - "fileLastModified": "2025-07-14T09:31:02.1162783+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1162759+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1744 - }, - "imageDetail": { - "width": 4190, - "height": 3914 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21618, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1181122+00:00", - "fileLastModified": "2025-07-14T09:31:02.1181124+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1181125+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1181115+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1745 - }, - "imageDetail": { - "width": 9098, - "height": 7101 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 68229, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1198348+00:00", - "fileLastModified": "2025-07-14T09:31:02.1198351+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1198341+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1746 - }, - "imageDetail": { - "width": 6917, - "height": 5984 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44739, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1214382+00:00", - "fileLastModified": "2025-07-14T09:31:02.1214384+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1214374+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1747 - }, - "imageDetail": { - "width": 8281, - "height": 8617 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 59153, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1230621+00:00", - "fileLastModified": "2025-07-14T09:31:02.1230623+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1230624+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1230614+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1748 - }, - "imageDetail": { - "width": 1505, - "height": 5530 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21854, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1246278+00:00", - "fileLastModified": "2025-07-14T09:31:02.124628+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1246281+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1246271+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1749 - }, - "imageDetail": { - "width": 4349, - "height": 8135 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47167, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1276543+00:00", - "fileLastModified": "2025-07-14T09:31:02.1276546+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1276534+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1750 - }, - "imageDetail": { - "width": 1918, - "height": 5293 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 60887, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.1297099+00:00", - "fileLastModified": "2025-07-14T09:31:02.1297101+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1297102+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.129709+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1751 - }, - "imageDetail": { - "width": 9790, - "height": 9305 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 32359, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1314627+00:00", - "fileLastModified": "2025-07-14T09:31:02.1314629+00:00", - "fileLastViewed": "2025-07-14T09:31:02.131463+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1314617+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1752 - }, - "imageDetail": { - "width": 9347, - "height": 2444 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92235, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1331779+00:00", - "fileLastModified": "2025-07-14T09:31:02.1331782+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1331783+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1331769+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1753 - }, - "imageDetail": { - "width": 2673, - "height": 2189 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 86049, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.134787+00:00", - "fileLastModified": "2025-07-14T09:31:02.1347873+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1347864+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1754 - }, - "imageDetail": { - "width": 9341, - "height": 7846 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 42083, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1364973+00:00", - "fileLastModified": "2025-07-14T09:31:02.1364975+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1364976+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1364966+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1755 - }, - "imageDetail": { - "width": 1897, - "height": 5466 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 54487, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1388493+00:00", - "fileLastModified": "2025-07-14T09:31:02.1388495+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1388484+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1756 - }, - "imageDetail": { - "width": 5798, - "height": 7848 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 52753, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1405476+00:00", - "fileLastModified": "2025-07-14T09:31:02.1405478+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1405479+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1405468+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1757 - }, - "imageDetail": { - "width": 490, - "height": 5576 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 88399, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.14342+00:00", - "fileLastModified": "2025-07-14T09:31:02.1434204+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1434178+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1758 - }, - "imageDetail": { - "width": 7479, - "height": 5790 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 45249, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1459963+00:00", - "fileLastModified": "2025-07-14T09:31:02.1459968+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1459945+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1759 - }, - "imageDetail": { - "width": 6065, - "height": 5423 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94829, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1492174+00:00", - "fileLastModified": "2025-07-14T09:31:02.1492176+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.149216+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1760 - }, - "imageDetail": { - "width": 9077, - "height": 4761 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64816, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1520698+00:00", - "fileLastModified": "2025-07-14T09:31:02.1520702+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1520679+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1761 - }, - "imageDetail": { - "width": 5778, - "height": 6981 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 24487, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.15569+00:00", - "fileLastModified": "2025-07-14T09:31:02.1556904+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1556883+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1762 - }, - "imageDetail": { - "width": 919, - "height": 2877 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 57224, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1589063+00:00", - "fileLastModified": "2025-07-14T09:31:02.1589068+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1589071+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1589046+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1763 - }, - "imageDetail": { - "width": 7924, - "height": 3098 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 21083, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1623117+00:00", - "fileLastModified": "2025-07-14T09:31:02.162312+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1623107+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1764 - }, - "imageDetail": { - "width": 1192, - "height": 8747 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 35893, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.1646189+00:00", - "fileLastModified": "2025-07-14T09:31:02.1646192+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1646178+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1765 - }, - "imageDetail": { - "width": 6899, - "height": 5852 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 27728, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1674932+00:00", - "fileLastModified": "2025-07-14T09:31:02.1674936+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1674938+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1674911+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1766 - }, - "imageDetail": { - "width": 8952, - "height": 7183 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 59307, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1701362+00:00", - "fileLastModified": "2025-07-14T09:31:02.1701368+00:00", - "fileLastViewed": "2025-07-14T09:31:02.170137+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1701348+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1767 - }, - "imageDetail": { - "width": 1677, - "height": 8520 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 98048, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1734996+00:00", - "fileLastModified": "2025-07-14T09:31:02.1734999+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1734987+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1768 - }, - "imageDetail": { - "width": 785, - "height": 3370 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92363, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1753423+00:00", - "fileLastModified": "2025-07-14T09:31:02.1753426+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1753427+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1753414+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1769 - }, - "imageDetail": { - "width": 8866, - "height": 2900 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95486, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.177331+00:00", - "fileLastModified": "2025-07-14T09:31:02.1773312+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1773302+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1770 - }, - "imageDetail": { - "width": 7120, - "height": 3433 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 94364, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1792511+00:00", - "fileLastModified": "2025-07-14T09:31:02.1792514+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1792515+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1792503+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1771 - }, - "imageDetail": { - "width": 4684, - "height": 7744 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 64823, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.181209+00:00", - "fileLastModified": "2025-07-14T09:31:02.1812092+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1812081+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1772 - }, - "imageDetail": { - "width": 158, - "height": 4660 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 21359, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1830754+00:00", - "fileLastModified": "2025-07-14T09:31:02.1830756+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1830757+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1830746+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1773 - }, - "imageDetail": { - "width": 7905, - "height": 7530 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 47153, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1848733+00:00", - "fileLastModified": "2025-07-14T09:31:02.1848735+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1848726+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1774 - }, - "imageDetail": { - "width": 9700, - "height": 3404 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 60078, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.1870258+00:00", - "fileLastModified": "2025-07-14T09:31:02.187026+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.187025+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1775 - }, - "imageDetail": { - "width": 1013, - "height": 3556 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 33208, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.18904+00:00", - "fileLastModified": "2025-07-14T09:31:02.1890402+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1890388+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1776 - }, - "imageDetail": { - "width": 1089, - "height": 9375 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 54195, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1909961+00:00", - "fileLastModified": "2025-07-14T09:31:02.1909964+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1909952+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1777 - }, - "imageDetail": { - "width": 3933, - "height": 4895 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 42966, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.1929744+00:00", - "fileLastModified": "2025-07-14T09:31:02.1929748+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1929749+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1929738+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1778 - }, - "imageDetail": { - "width": 5989, - "height": 8146 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 41248, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.194812+00:00", - "fileLastModified": "2025-07-14T09:31:02.1948122+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1948123+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1948112+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1779 - }, - "imageDetail": { - "width": 9004, - "height": 6745 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 54148, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.1966055+00:00", - "fileLastModified": "2025-07-14T09:31:02.1966057+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1966058+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1966034+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1780 - }, - "imageDetail": { - "width": 5405, - "height": 4833 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 50383, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.1993291+00:00", - "fileLastModified": "2025-07-14T09:31:02.1993294+00:00", - "fileLastViewed": "2025-07-14T09:31:02.1993295+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.1993284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1781 - }, - "imageDetail": { - "width": 8384, - "height": 5336 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29142, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2011179+00:00", - "fileLastModified": "2025-07-14T09:31:02.2011181+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2011182+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2011171+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1782 - }, - "imageDetail": { - "width": 8344, - "height": 6728 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 91340, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2029037+00:00", - "fileLastModified": "2025-07-14T09:31:02.202904+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2029041+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2028816+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1783 - }, - "imageDetail": { - "width": 1874, - "height": 6904 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 28136, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2052028+00:00", - "fileLastModified": "2025-07-14T09:31:02.2052031+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2052033+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.205202+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1784 - }, - "imageDetail": { - "width": 7891, - "height": 5803 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 32818, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2070777+00:00", - "fileLastModified": "2025-07-14T09:31:02.207078+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2070769+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1785 - }, - "imageDetail": { - "width": 3986, - "height": 8564 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 29397, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.2088166+00:00", - "fileLastModified": "2025-07-14T09:31:02.2088168+00:00", - "fileLastViewed": "2025-07-14T09:31:02.208817+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.208816+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1786 - }, - "imageDetail": { - "width": 2489, - "height": 3044 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 49625, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2110792+00:00", - "fileLastModified": "2025-07-14T09:31:02.2110795+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2110796+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2110784+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1787 - }, - "imageDetail": { - "width": 5809, - "height": 3339 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 42673, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2128496+00:00", - "fileLastModified": "2025-07-14T09:31:02.2128498+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2128499+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.212849+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1788 - }, - "imageDetail": { - "width": 2175, - "height": 7790 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 60127, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2148505+00:00", - "fileLastModified": "2025-07-14T09:31:02.2148507+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2148508+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2148498+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1789 - }, - "imageDetail": { - "width": 134, - "height": 5647 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33295, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.21664+00:00", - "fileLastModified": "2025-07-14T09:31:02.2166402+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2166403+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2166392+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1790 - }, - "imageDetail": { - "width": 6846, - "height": 4993 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 48877, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2184088+00:00", - "fileLastModified": "2025-07-14T09:31:02.218409+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2184091+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.218408+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1791 - }, - "imageDetail": { - "width": 9777, - "height": 5089 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74769, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2208392+00:00", - "fileLastModified": "2025-07-14T09:31:02.2208395+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2208383+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1792 - }, - "imageDetail": { - "width": 8629, - "height": 5043 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 36815, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.2225952+00:00", - "fileLastModified": "2025-07-14T09:31:02.2225955+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2225956+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2225945+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1793 - }, - "imageDetail": { - "width": 8266, - "height": 4043 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 21662, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2244118+00:00", - "fileLastModified": "2025-07-14T09:31:02.224412+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2244121+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.224411+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1794 - }, - "imageDetail": { - "width": 6559, - "height": 7213 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76021, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2261262+00:00", - "fileLastModified": "2025-07-14T09:31:02.2261265+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2261255+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1795 - }, - "imageDetail": { - "width": 4998, - "height": 8761 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 64812, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2278753+00:00", - "fileLastModified": "2025-07-14T09:31:02.2278755+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2278756+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2278746+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1796 - }, - "imageDetail": { - "width": 2092, - "height": 7774 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44052, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2297343+00:00", - "fileLastModified": "2025-07-14T09:31:02.2297345+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2297334+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1797 - }, - "imageDetail": { - "width": 5966, - "height": 7771 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 24958, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.231912+00:00", - "fileLastModified": "2025-07-14T09:31:02.2319122+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2319123+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2319112+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1798 - }, - "imageDetail": { - "width": 6343, - "height": 4787 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73087, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2335964+00:00", - "fileLastModified": "2025-07-14T09:31:02.2335966+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2335967+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2335957+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1799 - }, - "imageDetail": { - "width": 7149, - "height": 5499 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 57731, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.235429+00:00", - "fileLastModified": "2025-07-14T09:31:02.2354292+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2354293+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2354281+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1800 - }, - "imageDetail": { - "width": 5018, - "height": 8986 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 53777, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2374249+00:00", - "fileLastModified": "2025-07-14T09:31:02.2374251+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2374253+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2374241+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1801 - }, - "imageDetail": { - "width": 167, - "height": 2942 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 92785, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2392848+00:00", - "fileLastModified": "2025-07-14T09:31:02.239285+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.239284+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1802 - }, - "imageDetail": { - "width": 2089, - "height": 4292 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 54199, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2412105+00:00", - "fileLastModified": "2025-07-14T09:31:02.2412107+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2412094+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1803 - }, - "imageDetail": { - "width": 8369, - "height": 4082 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59779, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2433612+00:00", - "fileLastModified": "2025-07-14T09:31:02.2433615+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2433605+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1804 - }, - "imageDetail": { - "width": 7762, - "height": 8634 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 80883, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2454738+00:00", - "fileLastModified": "2025-07-14T09:31:02.2454741+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2454731+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1805 - }, - "imageDetail": { - "width": 2477, - "height": 4877 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 87842, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2472879+00:00", - "fileLastModified": "2025-07-14T09:31:02.2472881+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2472882+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2472871+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1806 - }, - "imageDetail": { - "width": 7754, - "height": 4018 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 45345, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.2490595+00:00", - "fileLastModified": "2025-07-14T09:31:02.2490597+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2490598+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2490587+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1807 - }, - "imageDetail": { - "width": 5038, - "height": 5717 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 44122, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.251125+00:00", - "fileLastModified": "2025-07-14T09:31:02.2511252+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2511254+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2511241+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1808 - }, - "imageDetail": { - "width": 3171, - "height": 4970 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 53526, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2531111+00:00", - "fileLastModified": "2025-07-14T09:31:02.2531118+00:00", - "fileLastViewed": "2025-07-14T09:31:02.253112+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2531102+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1809 - }, - "imageDetail": { - "width": 5063, - "height": 7878 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82905, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2556697+00:00", - "fileLastModified": "2025-07-14T09:31:02.25567+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2556701+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2556689+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1810 - }, - "imageDetail": { - "width": 4969, - "height": 2733 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 57845, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2575622+00:00", - "fileLastModified": "2025-07-14T09:31:02.2575625+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2575626+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2575614+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1811 - }, - "imageDetail": { - "width": 7000, - "height": 4211 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 76467, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2594001+00:00", - "fileLastModified": "2025-07-14T09:31:02.2594004+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2593993+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1812 - }, - "imageDetail": { - "width": 4976, - "height": 9788 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 40670, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2612188+00:00", - "fileLastModified": "2025-07-14T09:31:02.2612191+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2612181+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1813 - }, - "imageDetail": { - "width": 1135, - "height": 5409 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 53100, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.2630552+00:00", - "fileLastModified": "2025-07-14T09:31:02.2630557+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2630558+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2630544+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1814 - }, - "imageDetail": { - "width": 9143, - "height": 2331 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 79066, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.264925+00:00", - "fileLastModified": "2025-07-14T09:31:02.2649253+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2649254+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2649242+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1815 - }, - "imageDetail": { - "width": 7031, - "height": 3622 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 63979, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2677+00:00", - "fileLastModified": "2025-07-14T09:31:02.2677003+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2677004+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2676992+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1816 - }, - "imageDetail": { - "width": 6309, - "height": 2610 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 38074, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2695491+00:00", - "fileLastModified": "2025-07-14T09:31:02.2695495+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2695496+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2695482+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1817 - }, - "imageDetail": { - "width": 7534, - "height": 3990 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 40265, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2715009+00:00", - "fileLastModified": "2025-07-14T09:31:02.2715012+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2715013+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2715001+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1818 - }, - "imageDetail": { - "width": 7055, - "height": 9627 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 21544, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2736515+00:00", - "fileLastModified": "2025-07-14T09:31:02.2736517+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2736518+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2736506+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1819 - }, - "imageDetail": { - "width": 7790, - "height": 9897 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 43399, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.275631+00:00", - "fileLastModified": "2025-07-14T09:31:02.2756312+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2756301+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1820 - }, - "imageDetail": { - "width": 7628, - "height": 9611 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 39468, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.2775845+00:00", - "fileLastModified": "2025-07-14T09:31:02.2775847+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2775848+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2775837+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1821 - }, - "imageDetail": { - "width": 7732, - "height": 5932 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 64294, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.2799821+00:00", - "fileLastModified": "2025-07-14T09:31:02.2799823+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2799811+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1822 - }, - "imageDetail": { - "width": 2295, - "height": 3887 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97192, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.282471+00:00", - "fileLastModified": "2025-07-14T09:31:02.2824713+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2824715+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2824698+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1823 - }, - "imageDetail": { - "width": 1721, - "height": 5441 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 36318, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2843478+00:00", - "fileLastModified": "2025-07-14T09:31:02.2843481+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2843471+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1824 - }, - "imageDetail": { - "width": 4561, - "height": 5663 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 39258, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.286278+00:00", - "fileLastModified": "2025-07-14T09:31:02.2862783+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2862772+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1825 - }, - "imageDetail": { - "width": 9330, - "height": 6711 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 60154, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2880729+00:00", - "fileLastModified": "2025-07-14T09:31:02.2880731+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2880733+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2880721+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1826 - }, - "imageDetail": { - "width": 1440, - "height": 9413 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 67126, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2902799+00:00", - "fileLastModified": "2025-07-14T09:31:02.2902802+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2902793+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1827 - }, - "imageDetail": { - "width": 6090, - "height": 7781 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 76097, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.2920877+00:00", - "fileLastModified": "2025-07-14T09:31:02.2920879+00:00", - "fileLastViewed": "2025-07-14T09:31:02.292088+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.292087+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1828 - }, - "imageDetail": { - "width": 9883, - "height": 3053 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 48927, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.2938881+00:00", - "fileLastModified": "2025-07-14T09:31:02.2938883+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.293887+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1829 - }, - "imageDetail": { - "width": 1065, - "height": 5199 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 80945, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2956541+00:00", - "fileLastModified": "2025-07-14T09:31:02.2956543+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2956532+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1830 - }, - "imageDetail": { - "width": 4530, - "height": 2257 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 82903, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.2979057+00:00", - "fileLastModified": "2025-07-14T09:31:02.297906+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2979062+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2979049+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1831 - }, - "imageDetail": { - "width": 5032, - "height": 9470 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 52301, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.2997993+00:00", - "fileLastModified": "2025-07-14T09:31:02.2997996+00:00", - "fileLastViewed": "2025-07-14T09:31:02.2997998+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.2997987+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1832 - }, - "imageDetail": { - "width": 3649, - "height": 2210 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 90906, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3021558+00:00", - "fileLastModified": "2025-07-14T09:31:02.3021561+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3021547+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1833 - }, - "imageDetail": { - "width": 3166, - "height": 4198 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 56906, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3039543+00:00", - "fileLastModified": "2025-07-14T09:31:02.3039546+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3039547+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3039536+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1834 - }, - "imageDetail": { - "width": 1518, - "height": 8108 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 84392, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.3056723+00:00", - "fileLastModified": "2025-07-14T09:31:02.3056725+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3056726+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3056712+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1835 - }, - "imageDetail": { - "width": 4634, - "height": 2829 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 54991, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3075972+00:00", - "fileLastModified": "2025-07-14T09:31:02.3075974+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3075964+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1836 - }, - "imageDetail": { - "width": 5481, - "height": 6970 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 59881, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3094005+00:00", - "fileLastModified": "2025-07-14T09:31:02.3094007+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3094008+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3093997+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1837 - }, - "imageDetail": { - "width": 7931, - "height": 4265 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 99437, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3112113+00:00", - "fileLastModified": "2025-07-14T09:31:02.3112116+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3112104+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1838 - }, - "imageDetail": { - "width": 6169, - "height": 4909 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 50823, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3138126+00:00", - "fileLastModified": "2025-07-14T09:31:02.3138128+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3138116+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1839 - }, - "imageDetail": { - "width": 507, - "height": 7826 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76337, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3156062+00:00", - "fileLastModified": "2025-07-14T09:31:02.3156064+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3156053+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1840 - }, - "imageDetail": { - "width": 7682, - "height": 7589 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 99140, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3173668+00:00", - "fileLastModified": "2025-07-14T09:31:02.3173671+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3173661+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1841 - }, - "imageDetail": { - "width": 2025, - "height": 3661 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 36732, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.3191745+00:00", - "fileLastModified": "2025-07-14T09:31:02.3191747+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3191737+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1842 - }, - "imageDetail": { - "width": 5623, - "height": 5514 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 74000, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3209292+00:00", - "fileLastModified": "2025-07-14T09:31:02.3209294+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3209285+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1843 - }, - "imageDetail": { - "width": 5385, - "height": 5217 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 37381, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3231095+00:00", - "fileLastModified": "2025-07-14T09:31:02.3231097+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3231088+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1844 - }, - "imageDetail": { - "width": 4093, - "height": 6110 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 95541, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3248663+00:00", - "fileLastModified": "2025-07-14T09:31:02.3248665+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3248666+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3248656+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1845 - }, - "imageDetail": { - "width": 1450, - "height": 9557 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 74033, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3266233+00:00", - "fileLastModified": "2025-07-14T09:31:02.3266235+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3266221+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1846 - }, - "imageDetail": { - "width": 7585, - "height": 7194 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87607, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3288268+00:00", - "fileLastModified": "2025-07-14T09:31:02.3288271+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3288272+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3288256+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1847 - }, - "imageDetail": { - "width": 8299, - "height": 4177 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 97319, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3307898+00:00", - "fileLastModified": "2025-07-14T09:31:02.33079+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3307889+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1848 - }, - "imageDetail": { - "width": 1099, - "height": 7800 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 43061, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.332639+00:00", - "fileLastModified": "2025-07-14T09:31:02.3326393+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3326394+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3326383+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1849 - }, - "imageDetail": { - "width": 2819, - "height": 8622 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 78071, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3350675+00:00", - "fileLastModified": "2025-07-14T09:31:02.3350677+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3350679+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3350667+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1850 - }, - "imageDetail": { - "width": 6517, - "height": 9229 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 40606, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.336868+00:00", - "fileLastModified": "2025-07-14T09:31:02.3368682+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3368683+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3368673+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1851 - }, - "imageDetail": { - "width": 770, - "height": 6354 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 80611, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.338709+00:00", - "fileLastModified": "2025-07-14T09:31:02.3387092+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3387084+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1852 - }, - "imageDetail": { - "width": 7363, - "height": 2614 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 33779, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3405733+00:00", - "fileLastModified": "2025-07-14T09:31:02.3405735+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3405725+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1853 - }, - "imageDetail": { - "width": 4740, - "height": 5961 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26379, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3423952+00:00", - "fileLastModified": "2025-07-14T09:31:02.3423953+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3423955+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3423945+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1854 - }, - "imageDetail": { - "width": 5391, - "height": 9601 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 70995, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3454736+00:00", - "fileLastModified": "2025-07-14T09:31:02.3454739+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3454726+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1855 - }, - "imageDetail": { - "width": 3814, - "height": 5198 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 71266, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.3473482+00:00", - "fileLastModified": "2025-07-14T09:31:02.3473484+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3473475+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1856 - }, - "imageDetail": { - "width": 6715, - "height": 6276 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 35570, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.349526+00:00", - "fileLastModified": "2025-07-14T09:31:02.3495263+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3495264+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.349525+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1857 - }, - "imageDetail": { - "width": 6645, - "height": 7968 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 30614, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3517687+00:00", - "fileLastModified": "2025-07-14T09:31:02.3517689+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3517692+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3517679+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1858 - }, - "imageDetail": { - "width": 6022, - "height": 9492 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 92345, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3537834+00:00", - "fileLastModified": "2025-07-14T09:31:02.3537836+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3537837+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3537827+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1859 - }, - "imageDetail": { - "width": 7224, - "height": 5572 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 94591, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3556711+00:00", - "fileLastModified": "2025-07-14T09:31:02.3556714+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3556704+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1860 - }, - "imageDetail": { - "width": 5205, - "height": 4655 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 33167, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3579215+00:00", - "fileLastModified": "2025-07-14T09:31:02.3579218+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3579208+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1861 - }, - "imageDetail": { - "width": 4376, - "height": 9660 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 52709, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3603391+00:00", - "fileLastModified": "2025-07-14T09:31:02.3603394+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.360338+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1862 - }, - "imageDetail": { - "width": 3160, - "height": 8527 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 53355, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.3621563+00:00", - "fileLastModified": "2025-07-14T09:31:02.3621565+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3621555+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1863 - }, - "imageDetail": { - "width": 8610, - "height": 8869 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 52867, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3640097+00:00", - "fileLastModified": "2025-07-14T09:31:02.36401+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3640086+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1864 - }, - "imageDetail": { - "width": 9421, - "height": 4754 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 41030, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3661949+00:00", - "fileLastModified": "2025-07-14T09:31:02.3661952+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.366194+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1865 - }, - "imageDetail": { - "width": 6760, - "height": 3037 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 34038, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3685902+00:00", - "fileLastModified": "2025-07-14T09:31:02.3685905+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3685906+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3685894+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1866 - }, - "imageDetail": { - "width": 1867, - "height": 4799 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 75962, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3706364+00:00", - "fileLastModified": "2025-07-14T09:31:02.3706367+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3706368+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3706356+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1867 - }, - "imageDetail": { - "width": 9285, - "height": 8182 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95505, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3724866+00:00", - "fileLastModified": "2025-07-14T09:31:02.3724868+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3724869+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3724859+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1868 - }, - "imageDetail": { - "width": 2038, - "height": 8749 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 85776, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3744663+00:00", - "fileLastModified": "2025-07-14T09:31:02.3744666+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3744667+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3744652+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1869 - }, - "imageDetail": { - "width": 5387, - "height": 4501 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 44371, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.3768695+00:00", - "fileLastModified": "2025-07-14T09:31:02.3768698+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3768699+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3768687+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1870 - }, - "imageDetail": { - "width": 1916, - "height": 5769 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 95427, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3786619+00:00", - "fileLastModified": "2025-07-14T09:31:02.3786622+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3786622+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3786611+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1871 - }, - "imageDetail": { - "width": 3768, - "height": 4254 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 43681, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3810163+00:00", - "fileLastModified": "2025-07-14T09:31:02.3810165+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3810166+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3810152+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1872 - }, - "imageDetail": { - "width": 6669, - "height": 6575 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 66557, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3831487+00:00", - "fileLastModified": "2025-07-14T09:31:02.383149+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3831478+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1873 - }, - "imageDetail": { - "width": 3588, - "height": 5559 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95122, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3849661+00:00", - "fileLastModified": "2025-07-14T09:31:02.3849663+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3849664+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3849654+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1874 - }, - "imageDetail": { - "width": 4074, - "height": 8050 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 55029, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.3868123+00:00", - "fileLastModified": "2025-07-14T09:31:02.3868125+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3868115+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1875 - }, - "imageDetail": { - "width": 638, - "height": 5738 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 49823, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3886584+00:00", - "fileLastModified": "2025-07-14T09:31:02.388659+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3886591+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3886572+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1876 - }, - "imageDetail": { - "width": 1348, - "height": 8558 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 27034, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.391793+00:00", - "fileLastModified": "2025-07-14T09:31:02.3917933+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3917911+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1877 - }, - "imageDetail": { - "width": 3621, - "height": 3068 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 20539, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3938199+00:00", - "fileLastModified": "2025-07-14T09:31:02.3938201+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.393819+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1878 - }, - "imageDetail": { - "width": 3371, - "height": 3354 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 67046, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.3956758+00:00", - "fileLastModified": "2025-07-14T09:31:02.3956761+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3956751+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1879 - }, - "imageDetail": { - "width": 5670, - "height": 9569 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 34389, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.3975605+00:00", - "fileLastModified": "2025-07-14T09:31:02.3975608+00:00", - "fileLastViewed": "2025-07-14T09:31:02.3975609+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3975599+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1880 - }, - "imageDetail": { - "width": 6987, - "height": 4033 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 88169, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.3993522+00:00", - "fileLastModified": "2025-07-14T09:31:02.3993524+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.3993515+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1881 - }, - "imageDetail": { - "width": 978, - "height": 8869 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 94860, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4015692+00:00", - "fileLastModified": "2025-07-14T09:31:02.4015694+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4015695+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4015686+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1882 - }, - "imageDetail": { - "width": 1241, - "height": 6079 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 83023, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4034911+00:00", - "fileLastModified": "2025-07-14T09:31:02.4034914+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4034915+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4034901+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1883 - }, - "imageDetail": { - "width": 8308, - "height": 7650 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 63003, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.4054273+00:00", - "fileLastModified": "2025-07-14T09:31:02.4054277+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4054278+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4054265+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1884 - }, - "imageDetail": { - "width": 5792, - "height": 7426 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 76806, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4075016+00:00", - "fileLastModified": "2025-07-14T09:31:02.4075018+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4075008+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1885 - }, - "imageDetail": { - "width": 1496, - "height": 7357 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 50294, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4094408+00:00", - "fileLastModified": "2025-07-14T09:31:02.409441+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4094392+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1886 - }, - "imageDetail": { - "width": 2335, - "height": 7391 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 70648, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4113538+00:00", - "fileLastModified": "2025-07-14T09:31:02.411354+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4113529+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1887 - }, - "imageDetail": { - "width": 3920, - "height": 9860 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 34154, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4137255+00:00", - "fileLastModified": "2025-07-14T09:31:02.4137257+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4137258+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4137248+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1888 - }, - "imageDetail": { - "width": 1907, - "height": 7507 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 31712, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4157397+00:00", - "fileLastModified": "2025-07-14T09:31:02.41574+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4157401+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.415739+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1889 - }, - "imageDetail": { - "width": 7268, - "height": 2657 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 50639, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4175934+00:00", - "fileLastModified": "2025-07-14T09:31:02.4175936+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4175937+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4175926+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1890 - }, - "imageDetail": { - "width": 7513, - "height": 6633 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 83754, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.4194789+00:00", - "fileLastModified": "2025-07-14T09:31:02.4194791+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4194792+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4194781+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1891 - }, - "imageDetail": { - "width": 757, - "height": 6103 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 84157, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4218426+00:00", - "fileLastModified": "2025-07-14T09:31:02.4218428+00:00", - "fileLastViewed": "2025-07-14T09:31:02.421843+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4218412+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1892 - }, - "imageDetail": { - "width": 4128, - "height": 6322 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 51655, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.424255+00:00", - "fileLastModified": "2025-07-14T09:31:02.4242553+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4242542+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1893 - }, - "imageDetail": { - "width": 6743, - "height": 4962 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48894, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4261063+00:00", - "fileLastModified": "2025-07-14T09:31:02.4261065+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4261054+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1894 - }, - "imageDetail": { - "width": 7352, - "height": 6939 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 29982, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4279529+00:00", - "fileLastModified": "2025-07-14T09:31:02.4279531+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4279532+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4279522+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1895 - }, - "imageDetail": { - "width": 3197, - "height": 6770 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 97745, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4298067+00:00", - "fileLastModified": "2025-07-14T09:31:02.4298068+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.429806+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1896 - }, - "imageDetail": { - "width": 7193, - "height": 2936 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 68373, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4318962+00:00", - "fileLastModified": "2025-07-14T09:31:02.4318964+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4318954+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1897 - }, - "imageDetail": { - "width": 5840, - "height": 5871 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 97043, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.4342253+00:00", - "fileLastModified": "2025-07-14T09:31:02.4342255+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4342246+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1898 - }, - "imageDetail": { - "width": 9442, - "height": 7594 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 37304, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4360352+00:00", - "fileLastModified": "2025-07-14T09:31:02.4360355+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4360356+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4360344+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1899 - }, - "imageDetail": { - "width": 6798, - "height": 9665 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 50072, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4384483+00:00", - "fileLastModified": "2025-07-14T09:31:02.4384485+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.438447+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1900 - }, - "imageDetail": { - "width": 4280, - "height": 2607 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 83581, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4404743+00:00", - "fileLastModified": "2025-07-14T09:31:02.4404745+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4404735+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1901 - }, - "imageDetail": { - "width": 8940, - "height": 6791 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 20991, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.442384+00:00", - "fileLastModified": "2025-07-14T09:31:02.4423842+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4423843+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4423833+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1902 - }, - "imageDetail": { - "width": 6833, - "height": 7176 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 89490, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.444294+00:00", - "fileLastModified": "2025-07-14T09:31:02.4442942+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4442943+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4442933+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1903 - }, - "imageDetail": { - "width": 1051, - "height": 3109 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 93577, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4465195+00:00", - "fileLastModified": "2025-07-14T09:31:02.4465197+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4465189+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1904 - }, - "imageDetail": { - "width": 1923, - "height": 4419 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 94796, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.448364+00:00", - "fileLastModified": "2025-07-14T09:31:02.4483642+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4483643+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4483632+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1905 - }, - "imageDetail": { - "width": 2593, - "height": 7703 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 32020, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4502837+00:00", - "fileLastModified": "2025-07-14T09:31:02.4502839+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4502829+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1906 - }, - "imageDetail": { - "width": 3810, - "height": 7179 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 94083, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4521475+00:00", - "fileLastModified": "2025-07-14T09:31:02.4521477+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4521467+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1907 - }, - "imageDetail": { - "width": 1569, - "height": 8789 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 83359, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4546774+00:00", - "fileLastModified": "2025-07-14T09:31:02.4546776+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4546764+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1908 - }, - "imageDetail": { - "width": 565, - "height": 5711 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 43965, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4570499+00:00", - "fileLastModified": "2025-07-14T09:31:02.4570501+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4570491+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1909 - }, - "imageDetail": { - "width": 3607, - "height": 7362 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 71006, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4588718+00:00", - "fileLastModified": "2025-07-14T09:31:02.458872+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4588711+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1910 - }, - "imageDetail": { - "width": 8351, - "height": 4788 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 27822, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4608987+00:00", - "fileLastModified": "2025-07-14T09:31:02.4608989+00:00", - "fileLastViewed": "2025-07-14T09:31:02.460899+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.460898+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1911 - }, - "imageDetail": { - "width": 4079, - "height": 8364 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 72927, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.4627815+00:00", - "fileLastModified": "2025-07-14T09:31:02.4627817+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4627818+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4627806+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1912 - }, - "imageDetail": { - "width": 8357, - "height": 6429 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 90249, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4646165+00:00", - "fileLastModified": "2025-07-14T09:31:02.4646166+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4646167+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4646157+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1913 - }, - "imageDetail": { - "width": 5422, - "height": 5939 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 31343, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4669788+00:00", - "fileLastModified": "2025-07-14T09:31:02.466979+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4669791+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.466978+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1914 - }, - "imageDetail": { - "width": 5572, - "height": 2840 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 23562, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4692594+00:00", - "fileLastModified": "2025-07-14T09:31:02.4692596+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4692584+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1915 - }, - "imageDetail": { - "width": 316, - "height": 5510 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 28580, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4711907+00:00", - "fileLastModified": "2025-07-14T09:31:02.4711909+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.47119+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1916 - }, - "imageDetail": { - "width": 966, - "height": 9308 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 27693, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4731242+00:00", - "fileLastModified": "2025-07-14T09:31:02.4731244+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4731234+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1917 - }, - "imageDetail": { - "width": 8953, - "height": 5626 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 49869, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4750205+00:00", - "fileLastModified": "2025-07-14T09:31:02.4750207+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4750197+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1918 - }, - "imageDetail": { - "width": 9781, - "height": 9385 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 95887, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.4773358+00:00", - "fileLastModified": "2025-07-14T09:31:02.4773361+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4773362+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4773351+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1919 - }, - "imageDetail": { - "width": 3351, - "height": 3661 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 33724, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4791942+00:00", - "fileLastModified": "2025-07-14T09:31:02.4791945+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4791935+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1920 - }, - "imageDetail": { - "width": 5548, - "height": 7945 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 65550, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.4810062+00:00", - "fileLastModified": "2025-07-14T09:31:02.4810064+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4810065+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4810055+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1921 - }, - "imageDetail": { - "width": 5960, - "height": 9180 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 87102, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4828256+00:00", - "fileLastModified": "2025-07-14T09:31:02.4828258+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4828259+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4828248+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1922 - }, - "imageDetail": { - "width": 2893, - "height": 4087 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 44292, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4849829+00:00", - "fileLastModified": "2025-07-14T09:31:02.4849831+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4849822+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1923 - }, - "imageDetail": { - "width": 3960, - "height": 9323 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 65030, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4872339+00:00", - "fileLastModified": "2025-07-14T09:31:02.4872341+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4872342+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4872332+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1924 - }, - "imageDetail": { - "width": 1241, - "height": 6072 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 38781, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4890101+00:00", - "fileLastModified": "2025-07-14T09:31:02.4890103+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4890104+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4890094+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1925 - }, - "imageDetail": { - "width": 6637, - "height": 6709 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 99428, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.4907373+00:00", - "fileLastModified": "2025-07-14T09:31:02.4907375+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4907376+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4907366+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1926 - }, - "imageDetail": { - "width": 1421, - "height": 8954 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53603, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4925919+00:00", - "fileLastModified": "2025-07-14T09:31:02.4925921+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4925912+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1927 - }, - "imageDetail": { - "width": 9570, - "height": 9206 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 35337, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.4944994+00:00", - "fileLastModified": "2025-07-14T09:31:02.4944996+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4944987+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1928 - }, - "imageDetail": { - "width": 7093, - "height": 6808 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 73238, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.4967247+00:00", - "fileLastModified": "2025-07-14T09:31:02.4967249+00:00", - "fileLastViewed": "2025-07-14T09:31:02.496725+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.496724+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1929 - }, - "imageDetail": { - "width": 7342, - "height": 4055 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44840, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.4985464+00:00", - "fileLastModified": "2025-07-14T09:31:02.4985466+00:00", - "fileLastViewed": "2025-07-14T09:31:02.4985467+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.4985456+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1930 - }, - "imageDetail": { - "width": 4239, - "height": 3237 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 78694, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5003755+00:00", - "fileLastModified": "2025-07-14T09:31:02.5003757+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5003758+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5003748+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1931 - }, - "imageDetail": { - "width": 1843, - "height": 6309 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 51234, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5021542+00:00", - "fileLastModified": "2025-07-14T09:31:02.5021544+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5021545+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5021536+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1932 - }, - "imageDetail": { - "width": 651, - "height": 6394 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 34376, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5038897+00:00", - "fileLastModified": "2025-07-14T09:31:02.5038899+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.503889+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1933 - }, - "imageDetail": { - "width": 9607, - "height": 5108 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 97369, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5061602+00:00", - "fileLastModified": "2025-07-14T09:31:02.5061604+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5061596+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1934 - }, - "imageDetail": { - "width": 8234, - "height": 8329 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87130, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5080293+00:00", - "fileLastModified": "2025-07-14T09:31:02.5080295+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5080286+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1935 - }, - "imageDetail": { - "width": 5908, - "height": 2399 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 28894, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5099171+00:00", - "fileLastModified": "2025-07-14T09:31:02.5099173+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5099174+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5099164+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1936 - }, - "imageDetail": { - "width": 8686, - "height": 9901 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 79210, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5116656+00:00", - "fileLastModified": "2025-07-14T09:31:02.5116658+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.511665+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1937 - }, - "imageDetail": { - "width": 2539, - "height": 6453 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 28658, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5135287+00:00", - "fileLastModified": "2025-07-14T09:31:02.5135289+00:00", - "fileLastViewed": "2025-07-14T09:31:02.513529+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.513528+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1938 - }, - "imageDetail": { - "width": 1347, - "height": 2150 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 25756, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5161461+00:00", - "fileLastModified": "2025-07-14T09:31:02.5161464+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5161465+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5161453+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1939 - }, - "imageDetail": { - "width": 7813, - "height": 7448 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 87234, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5179415+00:00", - "fileLastModified": "2025-07-14T09:31:02.5179417+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5179418+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5179408+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1940 - }, - "imageDetail": { - "width": 3402, - "height": 5123 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 67185, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5197665+00:00", - "fileLastModified": "2025-07-14T09:31:02.5197667+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5197658+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1941 - }, - "imageDetail": { - "width": 7934, - "height": 7409 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48178, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5215601+00:00", - "fileLastModified": "2025-07-14T09:31:02.5215603+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5215604+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5215595+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1942 - }, - "imageDetail": { - "width": 4199, - "height": 3977 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 47708, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5234573+00:00", - "fileLastModified": "2025-07-14T09:31:02.5234575+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5234566+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1943 - }, - "imageDetail": { - "width": 199, - "height": 5565 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 89360, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5258092+00:00", - "fileLastModified": "2025-07-14T09:31:02.5258094+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5258085+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1944 - }, - "imageDetail": { - "width": 6875, - "height": 7493 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 92522, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.527568+00:00", - "fileLastModified": "2025-07-14T09:31:02.5275682+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5275673+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1945 - }, - "imageDetail": { - "width": 5249, - "height": 2471 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 59404, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5293485+00:00", - "fileLastModified": "2025-07-14T09:31:02.5293487+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5293488+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5293479+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1946 - }, - "imageDetail": { - "width": 155, - "height": 5249 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 96784, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5316891+00:00", - "fileLastModified": "2025-07-14T09:31:02.5316894+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5316882+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1947 - }, - "imageDetail": { - "width": 1636, - "height": 4691 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 44279, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5335225+00:00", - "fileLastModified": "2025-07-14T09:31:02.5335227+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5335218+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1948 - }, - "imageDetail": { - "width": 2174, - "height": 4876 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 28975, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5358916+00:00", - "fileLastModified": "2025-07-14T09:31:02.5358918+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5358908+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1949 - }, - "imageDetail": { - "width": 3822, - "height": 5013 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 63460, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5377529+00:00", - "fileLastModified": "2025-07-14T09:31:02.5377531+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5377522+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1950 - }, - "imageDetail": { - "width": 9086, - "height": 9439 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 23678, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5395516+00:00", - "fileLastModified": "2025-07-14T09:31:02.5395519+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5395509+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1951 - }, - "imageDetail": { - "width": 1404, - "height": 6680 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 92081, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5413257+00:00", - "fileLastModified": "2025-07-14T09:31:02.541326+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5413261+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5413242+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1952 - }, - "imageDetail": { - "width": 2116, - "height": 7119 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 76138, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5430869+00:00", - "fileLastModified": "2025-07-14T09:31:02.5430872+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5430873+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5430862+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1953 - }, - "imageDetail": { - "width": 2144, - "height": 8980 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 59152, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5457079+00:00", - "fileLastModified": "2025-07-14T09:31:02.5457081+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5457082+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5457071+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1954 - }, - "imageDetail": { - "width": 8339, - "height": 4919 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 65843, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5479996+00:00", - "fileLastModified": "2025-07-14T09:31:02.5479998+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.547999+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1955 - }, - "imageDetail": { - "width": 1478, - "height": 3519 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 97516, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.549841+00:00", - "fileLastModified": "2025-07-14T09:31:02.5498413+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5498403+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1956 - }, - "imageDetail": { - "width": 8895, - "height": 4377 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 46838, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5516243+00:00", - "fileLastModified": "2025-07-14T09:31:02.5516245+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5516236+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1957 - }, - "imageDetail": { - "width": 9478, - "height": 7118 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 24795, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5534642+00:00", - "fileLastModified": "2025-07-14T09:31:02.5534644+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5534636+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1958 - }, - "imageDetail": { - "width": 3525, - "height": 6366 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 97877, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5557858+00:00", - "fileLastModified": "2025-07-14T09:31:02.555786+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5557861+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5557851+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1959 - }, - "imageDetail": { - "width": 2903, - "height": 6866 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 53179, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5576259+00:00", - "fileLastModified": "2025-07-14T09:31:02.5576261+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5576262+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5576252+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1960 - }, - "imageDetail": { - "width": 6642, - "height": 4958 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 83921, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5594718+00:00", - "fileLastModified": "2025-07-14T09:31:02.5594721+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5594712+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1961 - }, - "imageDetail": { - "width": 8850, - "height": 2046 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79860, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5615838+00:00", - "fileLastModified": "2025-07-14T09:31:02.561584+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5615841+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5615832+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1962 - }, - "imageDetail": { - "width": 1555, - "height": 4866 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 82751, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5634348+00:00", - "fileLastModified": "2025-07-14T09:31:02.563435+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5634341+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1963 - }, - "imageDetail": { - "width": 733, - "height": 7762 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 79858, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.565747+00:00", - "fileLastModified": "2025-07-14T09:31:02.5657472+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5657463+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1964 - }, - "imageDetail": { - "width": 4450, - "height": 6108 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 71326, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5676556+00:00", - "fileLastModified": "2025-07-14T09:31:02.5676558+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5676559+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5676549+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1965 - }, - "imageDetail": { - "width": 3793, - "height": 4215 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 27071, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5695195+00:00", - "fileLastModified": "2025-07-14T09:31:02.5695197+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5695198+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": "2025-07-21T17:00:45.0866667+00:00", - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5695188+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1966 - }, - "imageDetail": { - "width": 9179, - "height": 7091 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 39970, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5713614+00:00", - "fileLastModified": "2025-07-14T09:31:02.5713616+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5713617+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5713607+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1967 - }, - "imageDetail": { - "width": 6542, - "height": 5187 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 25171, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5732518+00:00", - "fileLastModified": "2025-07-14T09:31:02.573252+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5732521+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5732512+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1968 - }, - "imageDetail": { - "width": 767, - "height": 6499 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 89613, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5755089+00:00", - "fileLastModified": "2025-07-14T09:31:02.5755091+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5755079+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1969 - }, - "imageDetail": { - "width": 4416, - "height": 5604 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 29205, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5775266+00:00", - "fileLastModified": "2025-07-14T09:31:02.5775268+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.577526+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1970 - }, - "imageDetail": { - "width": 462, - "height": 6465 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 31408, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5795005+00:00", - "fileLastModified": "2025-07-14T09:31:02.5795007+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5795008+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5794998+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1971 - }, - "imageDetail": { - "width": 3439, - "height": 5372 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 48998, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5812824+00:00", - "fileLastModified": "2025-07-14T09:31:02.5812826+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5812827+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5812817+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1972 - }, - "imageDetail": { - "width": 9792, - "height": 7187 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 43614, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.583008+00:00", - "fileLastModified": "2025-07-14T09:31:02.5830082+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5830083+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5830074+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1973 - }, - "imageDetail": { - "width": 1825, - "height": 3585 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 27148, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5851968+00:00", - "fileLastModified": "2025-07-14T09:31:02.5851971+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5851972+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5851962+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1974 - }, - "imageDetail": { - "width": 1450, - "height": 7945 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 58846, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.5869241+00:00", - "fileLastModified": "2025-07-14T09:31:02.5869244+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5869235+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1975 - }, - "imageDetail": { - "width": 9581, - "height": 4085 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 96443, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5886227+00:00", - "fileLastModified": "2025-07-14T09:31:02.5886229+00:00", - "fileLastViewed": "2025-07-14T09:31:02.588623+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5886221+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1976 - }, - "imageDetail": { - "width": 2896, - "height": 2083 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 78509, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5904071+00:00", - "fileLastModified": "2025-07-14T09:31:02.5904073+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5904074+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5904064+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1977 - }, - "imageDetail": { - "width": 9926, - "height": 5333 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 54978, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.5921154+00:00", - "fileLastModified": "2025-07-14T09:31:02.5921156+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5921147+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1978 - }, - "imageDetail": { - "width": 485, - "height": 8293 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 87942, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.5947998+00:00", - "fileLastModified": "2025-07-14T09:31:02.5948+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5947988+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1979 - }, - "imageDetail": { - "width": 7133, - "height": 5329 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 26842, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.5965519+00:00", - "fileLastModified": "2025-07-14T09:31:02.5965521+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5965522+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5965513+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1980 - }, - "imageDetail": { - "width": 6754, - "height": 7340 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 99449, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.5982951+00:00", - "fileLastModified": "2025-07-14T09:31:02.5982953+00:00", - "fileLastViewed": "2025-07-14T09:31:02.5982954+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.5982944+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1981 - }, - "imageDetail": { - "width": 8616, - "height": 6560 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 90473, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.6000742+00:00", - "fileLastModified": "2025-07-14T09:31:02.6000744+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6000745+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6000736+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1982 - }, - "imageDetail": { - "width": 4534, - "height": 8673 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 29163, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.6018594+00:00", - "fileLastModified": "2025-07-14T09:31:02.6018596+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6018597+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6018585+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1983 - }, - "imageDetail": { - "width": 9300, - "height": 4285 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 49892, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.6041609+00:00", - "fileLastModified": "2025-07-14T09:31:02.6041611+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6041612+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6041602+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1984 - }, - "imageDetail": { - "width": 5715, - "height": 9904 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 26354, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.6060223+00:00", - "fileLastModified": "2025-07-14T09:31:02.6060225+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6060216+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1985 - }, - "imageDetail": { - "width": 4265, - "height": 6240 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 59001, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.6078336+00:00", - "fileLastModified": "2025-07-14T09:31:02.6078338+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.607833+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1986 - }, - "imageDetail": { - "width": 9019, - "height": 8560 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 35858, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.6107499+00:00", - "fileLastModified": "2025-07-14T09:31:02.6107502+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6107488+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1987 - }, - "imageDetail": { - "width": 7996, - "height": 4633 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 55397, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.6131985+00:00", - "fileLastModified": "2025-07-14T09:31:02.6131987+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6131988+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6131972+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1988 - }, - "imageDetail": { - "width": 4204, - "height": 6995 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 62217, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.6150335+00:00", - "fileLastModified": "2025-07-14T09:31:02.6150337+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6150338+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6150328+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1989 - }, - "imageDetail": { - "width": 495, - "height": 9526 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 37820, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.6169656+00:00", - "fileLastModified": "2025-07-14T09:31:02.6169658+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6169659+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6169649+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1990 - }, - "imageDetail": { - "width": 961, - "height": 9682 - }, - "fileName": { - "value": "\\some\\file.png" - }, - "directoryName": { - "value": "\\with\\sub\\folders" - }, - "fullNameWithPath": "\\some\\file.png", - "fileSize": 57686, - "isImage": true, - "fileHandle": { - "value": "-some-file-png" - }, - "fileCreated": "2025-06-21T09:31:02.618753+00:00", - "fileLastModified": "2025-07-14T09:31:02.6187532+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6187533+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6187514+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1991 - }, - "imageDetail": { - "width": 6997, - "height": 4322 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 95810, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.6205227+00:00", - "fileLastModified": "2025-07-14T09:31:02.6205229+00:00", - "fileLastViewed": "2025-07-14T09:31:02.620523+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6205221+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1992 - }, - "imageDetail": { - "width": 6935, - "height": 6212 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 28793, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.6228614+00:00", - "fileLastModified": "2025-07-14T09:31:02.6228616+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6228617+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": "2025-07-21T17:01:19.4+00:00" - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6228607+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1993 - }, - "imageDetail": { - "width": 9558, - "height": 3924 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 96283, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.6253604+00:00", - "fileLastModified": "2025-07-14T09:31:02.6253606+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6253607+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6253593+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1994 - }, - "imageDetail": { - "width": 4563, - "height": 5975 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 69294, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.6272113+00:00", - "fileLastModified": "2025-07-14T09:31:02.6272115+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6272116+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6272106+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1995 - }, - "imageDetail": { - "width": 4467, - "height": 5928 - }, - "fileName": { - "value": "\\some\\file.jpg" - }, - "directoryName": { - "value": "\\with\\sub\\folder" - }, - "fullNameWithPath": "\\some\\file.jpg", - "fileSize": 40441, - "isImage": true, - "fileHandle": { - "value": "-some-file-jpg" - }, - "fileCreated": "2025-06-21T09:31:02.6291319+00:00", - "fileLastModified": "2025-07-14T09:31:02.6291321+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": "2025-07-21T17:01:27.23+00:00", - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6291313+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1996 - }, - "imageDetail": { - "width": 612, - "height": 7268 - }, - "fileName": { - "value": "\\some\\file.gif" - }, - "directoryName": { - "value": "\\one-level" - }, - "fullNameWithPath": "\\some\\file.gif", - "fileSize": 58962, - "isImage": true, - "fileHandle": { - "value": "-some-file-gif" - }, - "fileCreated": "2025-06-21T09:31:02.6310984+00:00", - "fileLastModified": "2025-07-14T09:31:02.6310986+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6310987+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6310977+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1997 - }, - "imageDetail": { - "width": 4075, - "height": 6065 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 49576, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.6333897+00:00", - "fileLastModified": "2025-07-14T09:31:02.63339+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6333891+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1998 - }, - "imageDetail": { - "width": 9844, - "height": 9979 - }, - "fileName": { - "value": "\\some\\file.bmp" - }, - "directoryName": { - "value": "\\with\\sub\\folder\\and\\another" - }, - "fullNameWithPath": "\\some\\file.bmp", - "fileSize": 45627, - "isImage": true, - "fileHandle": { - "value": "-some-file-bmp" - }, - "fileCreated": "2025-06-21T09:31:02.6351973+00:00", - "fileLastModified": "2025-07-14T09:31:02.6351975+00:00", - "fileLastViewed": "2025-07-14T09:31:02.6351976+00:00", - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6351967+00:00" - }, - { - "fileClassifications": [], - "id": { - "value": 1999 - }, - "imageDetail": { - "width": 2776, - "height": 6210 - }, - "fileName": { - "value": "\\some\\file.txt" - }, - "directoryName": { - "value": "\\some\\directory" - }, - "fullNameWithPath": "\\some\\file.txt", - "fileSize": 20658, - "isImage": false, - "fileHandle": { - "value": "-some-file-txt" - }, - "fileCreated": "2025-06-21T09:31:02.6370035+00:00", - "fileLastModified": "2025-07-14T09:31:02.6370037+00:00", - "fileLastViewed": null, - "moveRequired": false, - "deletionStatus": { - "softDeleted": null, - "softDeletePending": null, - "hardDeletePending": null - }, - "updatedBy": "Jay Barden", - "updatedOn": "2025-07-21T09:31:02.6370028+00:00" - } -] \ No newline at end of file diff --git a/support/DbContextHelpers/MockFilesContextFactory.cs b/support/DbContextHelpers/MockFilesContextFactory.cs index 8f1adf9..91da4b7 100644 --- a/support/DbContextHelpers/MockFilesContextFactory.cs +++ b/support/DbContextHelpers/MockFilesContextFactory.cs @@ -31,7 +31,7 @@ public static async Task CreateMockFilesContextAsync() public static void AddMockFiles(this FilesContext mockFilesContext) { - var combine = Path.Combine(Directory.GetCurrentDirectory(), "../../../../DbContextHelpers/TestData/files.json"); + var combine = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../support/DbContextHelpers/TestData/files.json"); var filesAsJson = File.ReadAllText(combine); var listFromJson = JsonSerializer.Deserialize>(filesAsJson, JsonSerializerOptions.Web)!; From 0d6f218fa1d5b097281d6f303a90dcb9ccda6566 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sat, 26 Jul 2025 23:07:48 +0100 Subject: [PATCH 2/6] Add tests to bring coverage up It';'s quiet possible that the tests exist in the original project(s) but... --- DatabaseTesting.sln | 16 +++- .../AStar.Dev.Infrastructure.FilesDb.xml | 48 ---------- .../EnumerableExtensions.cs | 91 ------------------- .../Models/FileDetail.cs | 2 +- ...structure.FilesDb.Tests.Integration.csproj | 0 ...FileDetailDirectoryNameExtensionsShould.cs | 0 .../FilesContextLastViewedExtensionsShould.cs | 0 ...v.Infrastructure.FilesDb.Tests.Unit.csproj | 26 ++++++ ....ContainTheExpectedProperties.approved.txt | 5 + .../Models/DeletionStatusShould.cs | 19 ++++ ....ContainTheExpectedProperties.approved.txt | 3 + .../Models/DirectoryNameShould.cs | 14 +++ ....ContainTheExpectedProperties.approved.txt | 16 ++++ .../Models/DuplicateDetailShould.cs | 30 ++++++ ...dContainTheExpectedProperties.approved.txt | 17 ++++ .../Models/EventShould.cs | 28 ++++++ ....ContainTheExpectedProperties.approved.txt | 81 +++++++++++++++++ .../Models/FileDetailShould.cs | 48 ++++++++++ ....ContainTheExpectedProperties.approved.txt | 3 + .../Models/FileHandleShould.cs | 24 +++++ ....ContainTheExpectedProperties.approved.txt | 3 + .../Models/FileIdShould.cs | 14 +++ ....ContainTheExpectedProperties.approved.txt | 13 +++ .../Models/FileNamePartShould.cs | 14 +++ ....ContainTheExpectedProperties.approved.txt | 3 + .../Models/FileNameShould.cs | 14 +++ ....ContainTheExpectedProperties.approved.txt | 4 + .../Models/ImageDetailShould.cs | 14 +++ ...AStar.Dev.Infrastructure.Tests.Unit.csproj | 28 ++++++ ....ContainTheExpectedProperties.approved.txt | 4 + .../AStarDbContextOptionsShould.cs | 14 +++ ....ContainTheExpectedProperties.approved.txt | 4 + .../AuditableEntityShould.cs | 18 ++++ ....ContainTheExpectedProperties.approved.txt | 3 + .../ConnectionStringShould.cs | 14 +++ 35 files changed, 494 insertions(+), 141 deletions(-) delete mode 100644 src/AStar.Dev.Infrastructure.FilesDb/EnumerableExtensions.cs rename test/{AStar.Dev.Infrastructure.FilesDb.Tests.Unit => AStar.Dev.Infrastructure.FilesDb.Tests.Integration}/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj (100%) rename test/{AStar.Dev.Infrastructure.FilesDb.Tests.Unit => AStar.Dev.Infrastructure.FilesDb.Tests.Integration}/FileDetailDirectoryNameExtensionsShould.cs (100%) rename test/{AStar.Dev.Infrastructure.FilesDb.Tests.Unit => AStar.Dev.Infrastructure.FilesDb.Tests.Integration}/FilesContextLastViewedExtensionsShould.cs (100%) create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.ShouldContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs diff --git a/DatabaseTesting.sln b/DatabaseTesting.sln index 537dd88..10962ba 100644 --- a/DatabaseTesting.sln +++ b/DatabaseTesting.sln @@ -7,7 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Technical.Debt.Re EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Utilities", "support\AStar.Dev.Utilities\AStar.Dev.Utilities.csproj", "{28720605-9CA9-4A33-BB00-655F4B76CA19}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.FilesDb.Tests.Integration", "test\AStar.Dev.Infrastructure.FilesDb.Tests.Unit\AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj", "{2860766A-6251-4874-9535-199ED5E29AA0}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.FilesDb.Tests.Integration", "test\AStar.Dev.Infrastructure.FilesDb.Tests.Integration\AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj", "{2860766A-6251-4874-9535-199ED5E29AA0}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbContextHelpers", "support\DbContextHelpers\DbContextHelpers.csproj", "{FE38F9CD-8573-44D1-A03F-73D318B6E86D}" EndProject @@ -36,6 +36,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure", EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.FilesDb", "src\AStar.Dev.Infrastructure.FilesDb\AStar.Dev.Infrastructure.FilesDb.csproj", "{626B3E85-6C5D-4D8B-96BB-BF2D375326CA}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.Tests.Unit", "test\AStar.Dev.Infrastructure.Tests.Unit\AStar.Dev.Infrastructure.Tests.Unit.csproj", "{1EC059E7-7C8D-4492-8C07-30BD79AEE465}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.FilesDb.Tests.Unit", "test\AStar.Dev.Infrastructure.FilesDb.Tests.Unit\AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj", "{019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -66,6 +70,14 @@ Global {626B3E85-6C5D-4D8B-96BB-BF2D375326CA}.Debug|Any CPU.Build.0 = Debug|Any CPU {626B3E85-6C5D-4D8B-96BB-BF2D375326CA}.Release|Any CPU.ActiveCfg = Release|Any CPU {626B3E85-6C5D-4D8B-96BB-BF2D375326CA}.Release|Any CPU.Build.0 = Release|Any CPU + {1EC059E7-7C8D-4492-8C07-30BD79AEE465}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1EC059E7-7C8D-4492-8C07-30BD79AEE465}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1EC059E7-7C8D-4492-8C07-30BD79AEE465}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1EC059E7-7C8D-4492-8C07-30BD79AEE465}.Release|Any CPU.Build.0 = Release|Any CPU + {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Debug|Any CPU.Build.0 = Debug|Any CPU + {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Release|Any CPU.ActiveCfg = Release|Any CPU + {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -82,5 +94,7 @@ Global {FE38F9CD-8573-44D1-A03F-73D318B6E86D} = {F06BC983-3361-41B2-B64F-7A77A2E32782} {C00B2A62-E46E-4F6E-BC8A-39088261A17E} = {D61F13DC-3A32-42BE-8687-F795D7332A51} {626B3E85-6C5D-4D8B-96BB-BF2D375326CA} = {D61F13DC-3A32-42BE-8687-F795D7332A51} + {1EC059E7-7C8D-4492-8C07-30BD79AEE465} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} + {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} EndGlobalSection EndGlobal diff --git a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml index 9db5759..c26f8b8 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml +++ b/src/AStar.Dev.Infrastructure.FilesDb/AStar.Dev.Infrastructure.FilesDb.xml @@ -117,54 +117,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gets the count of duplicates, grouped by Size, Height and Width. - - - The files to return grouped together. - - - - - - - - - Gets the count of duplicates, grouped by Size, Height and Width. - - - The files to return grouped together. - - - - diff --git a/src/AStar.Dev.Infrastructure.FilesDb/EnumerableExtensions.cs b/src/AStar.Dev.Infrastructure.FilesDb/EnumerableExtensions.cs deleted file mode 100644 index ff0cf42..0000000 --- a/src/AStar.Dev.Infrastructure.FilesDb/EnumerableExtensions.cs +++ /dev/null @@ -1,91 +0,0 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; -using AStar.Dev.Technical.Debt.Reporting; -using AStar.Dev.Utilities; - -namespace AStar.Dev.Infrastructure.FilesDb; - -/// -/// -[Refactor(1, 1, "I think these methods have been implemented in the files api project - remove duplicate methods / files.")] -public static class EnumerableExtensions -{ - /// - /// - /// - /// - /// - /// - /// - /// - /// - /// - public static IEnumerable FilterImagesIfApplicable(this IEnumerable files, string searchType, CancellationToken cancellationToken) => - cancellationToken.IsCancellationRequested - ? files - : FilterImagesIfApplicable(files, searchType); - - /// - /// - /// - /// - /// - /// - /// - /// - public static IEnumerable OrderFiles(this IEnumerable files, SortOrder sortOrder) => - sortOrder switch - { - SortOrder.NameAscending => files.OrderBy(f => f.FileName), - SortOrder.NameDescending => files.OrderByDescending(f => f.FileName), - SortOrder.SizeAscending => files.OrderBy(f => f.FileSize), - SortOrder.SizeDescending => files.OrderByDescending(f => f.FileSize), - _ => files - }; - - /// - /// Gets the count of duplicates, grouped by Size, Height and Width. - /// - /// - /// The files to return grouped together. - /// - /// - /// - /// - /// - public static int GetDuplicatesCount(this IEnumerable files, CancellationToken cancellationToken) - { - if (cancellationToken.IsCancellationRequested) - { - return 0; - } - - // var duplicatesBySize = files - // .Join(f=>f.ImageDetails).AsEnumerable() - // .GroupBy(file => FileSize.Create(file.FileSize, file.Height, file.Width), - // new FileSizeEqualityComparer()).Where(fileGroups => fileGroups.Count() > 1) - // .ToArray(); - // - // return duplicatesBySize.Length; - return 0; - } - - /// - /// Gets the count of duplicates, grouped by Size, Height and Width. - /// - /// - /// The files to return grouped together. - /// - /// - /// - public static IEnumerable> GetDuplicates(this IEnumerable files) => - - // return files - // .GroupBy(file => FileSize.Create(file.FileSize, file.Height, file.Width), - // new FileSizeEqualityComparer()).Where(fileGroups => fileGroups.Count() > 1); - []; - - private static IEnumerable FilterImagesIfApplicable(IEnumerable files, string searchType) => - searchType != "Images" - ? files - : files.Where(file => file.FileName.Value.IsImage()); -} diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs index bc33093..b453eb9 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Models/FileDetail.cs @@ -55,7 +55,7 @@ public FileDetail(IFileInfo fileInfo) /// /// Gets the full name of the file with the path combined /// - public string FullNameWithPath => Path.Combine(DirectoryName.Value, FileName.Value); + public string FullNameWithPath => Path.Combine(DirectoryName.Value, FileName.Value ?? ""); /// /// Gets or sets the file size. I know, shocking... diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj similarity index 100% rename from test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj rename to test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/AStar.Dev.Infrastructure.FilesDb.Tests.Integration.csproj diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/FileDetailDirectoryNameExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs similarity index 100% rename from test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/FileDetailDirectoryNameExtensionsShould.cs rename to test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FileDetailDirectoryNameExtensionsShould.cs diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/FilesContextLastViewedExtensionsShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs similarity index 100% rename from test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/FilesContextLastViewedExtensionsShould.cs rename to test/AStar.Dev.Infrastructure.FilesDb.Tests.Integration/FilesContextLastViewedExtensionsShould.cs diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj new file mode 100644 index 0000000..6f1cced --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj @@ -0,0 +1,26 @@ + + + + net9.0 + enable + enable + false + + + + + + + + + + + + + + + + + + + diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..8b8b0d4 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,5 @@ +{ + "softDeleted": "2025-07-28T01:02:03+00:00", + "softDeletePending": "2025-07-28T03:04:05+00:00", + "hardDeletePending": "2025-07-28T02:03:04+00:00" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs new file mode 100644 index 0000000..afdcb41 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DeletionStatusShould.cs @@ -0,0 +1,19 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class DeletionStatusShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new DeletionStatus + { + SoftDeleted = new DateTimeOffset(2025, 7, 28, 1, 2, 3, TimeSpan.Zero), + HardDeletePending = new DateTimeOffset(2025, 7, 28, 2, 3, 4, TimeSpan.Zero), + SoftDeletePending = new DateTimeOffset(2025, 7, 28, 3, 4, 5, TimeSpan.Zero) + } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..cfc42e2 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "test" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs new file mode 100644 index 0000000..9d949c5 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DirectoryNameShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class DirectoryNameShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new DirectoryName { Value = "test" } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..7fbdc11 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,16 @@ +{ + "fileName": "mock-file-name", + "directoryName": "mock-directory-name", + "imageHeight": 123, + "imageWidth": 345, + "fileSize": 1245, + "fileHandle": "mock-file-handle", + "isImage": true, + "instances": 2, + "updatedOn": "2025-07-28T08:07:09+00:00", + "fileLastViewed": "2025-07-28T11:22:33+00:00", + "softDeleted": "2025-07-28T05:06:01+00:00", + "softDeletePending": "2025-07-28T03:04:05+00:00", + "moveRequired": true, + "hardDeletePending": "2025-07-28T02:03:04+00:00" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs new file mode 100644 index 0000000..93bc491 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/DuplicateDetailShould.cs @@ -0,0 +1,30 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class DuplicateDetailShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new DuplicateDetail + { + FileHandle = new ("mock-file-handle"), + DirectoryName = new ("mock-directory-name"), + FileName = new ("mock-file-name"), + FileSize = 1245, + IsImage = true, + FileLastViewed = new DateTimeOffset(2025, 07, 28, 11, 22, 33, TimeSpan.Zero), + UpdatedOn = new (2025, 07, 28, 8, 7, 9, TimeSpan.Zero), + MoveRequired = true, + ImageHeight = 123, + ImageWidth = 345, + HardDeletePending = new DateTimeOffset(2025, 07, 28, 2, 3, 4, TimeSpan.Zero), + SoftDeletePending = new DateTimeOffset(2025, 07, 28, 3, 4, 5, TimeSpan.Zero), + SoftDeleted = new DateTimeOffset(2025, 07, 28, 5, 6, 1, TimeSpan.Zero), + Instances = 2 + } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.ShouldContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.ShouldContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..29ae8e0 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.ShouldContainTheExpectedProperties.approved.txt @@ -0,0 +1,17 @@ +{ + "id": 1324, + "type": { + "value": 1, + "name": "Add" + }, + "eventOccurredAt": "2025-07-28T01:24:34+00:00", + "fileName": "FileName", + "directoryName": "DirectoryName", + "handle": "mock-handle", + "width": 987, + "height": 456, + "fileSize": 124, + "fileCreated": "2025-07-28T11:22:33+00:00", + "fileLastModified": "2025-07-28T01:02:03+00:00", + "updatedBy": "TestUser" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs new file mode 100644 index 0000000..e1ac6bb --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/EventShould.cs @@ -0,0 +1,28 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class EventShould +{ + [Fact] + public void ShouldContainTheExpectedProperties() + => new Event + { + FileName = "FileName", + DirectoryName = "DirectoryName", + FileSize = 124, + FileCreated = new (2025, 07, 28, 11, 22, 33, TimeSpan.Zero) , + FileLastModified = new (2025, 07, 28, 1, 2, 3, TimeSpan.Zero), + Height = 456, + Id = 1324, + UpdatedBy = "TestUser", + Width = 987, + EventOccurredAt = new (2025, 07, 28, 1, 24, 34, TimeSpan.Zero), + Handle = "mock-handle", + Type = EventType.Add + } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..e9f45f9 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,81 @@ +{ + "fileClassifications": [ + { + "id": 1, + "name": "Celebrity", + "fileDetails": [ + { + "fileClassifications": [], + "id": { + "value": 0 + }, + "imageDetail": { + "width": null, + "height": null + }, + "fileName": { + "value": null + }, + "directoryName": { + "value": "mock-directory-name2" + }, + "fullNameWithPath": "mock-directory-name2", + "fileSize": 0, + "isImage": false, + "fileHandle": { + "value": null + }, + "fileCreated": "0001-01-01T00:00:00+00:00", + "fileLastModified": "0001-01-01T00:00:00+00:00", + "fileLastViewed": null, + "moveRequired": false, + "deletionStatus": { + "softDeleted": null, + "softDeletePending": null, + "hardDeletePending": null + }, + "updatedBy": "Jay Barden", + "updatedOn": "2025-07-28T01:02:03+00:00" + } + ], + "celebrity": true, + "fileNameParts": [ + { + "id": 0, + "text": "mock-file-name-part", + "fileClassifications": [] + } + ] + } + ], + "id": { + "value": 68 + }, + "imageDetail": { + "width": 7, + "height": 8 + }, + "fileName": { + "value": "mock-file-name" + }, + "directoryName": { + "value": "mock-directory-name" + }, + "fullNameWithPath": "mock-directory-name/mock-file-name", + "fileSize": 1245, + "isImage": true, + "fileHandle": { + "value": "mock-file-handle" + }, + "fileCreated": "2025-07-28T05:06:07+00:00", + "fileLastModified": "2025-07-28T10:20:30+00:00", + "fileLastViewed": "2025-07-28T11:22:33+00:00", + "moveRequired": true, + "deletionStatus": { + "softDeleted": "2025-07-28T03:04:05+00:00", + "softDeletePending": "2025-07-28T02:03:04+00:00", + "hardDeletePending": "2025-07-28T01:02:03+00:00" + }, + "updatedBy": "mock-user-name", + "updatedOn": "2025-07-28T08:07:09+00:00" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs new file mode 100644 index 0000000..60d5a81 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileDetailShould.cs @@ -0,0 +1,48 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class FileDetailShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new FileDetail + { + Id = new (68), + DirectoryName = new ("mock-directory-name"), + FileName = new ("mock-file-name"), + ImageDetail = new (7, 8), + FileHandle = new ("mock-file-handle"), + DeletionStatus = + new() + { + HardDeletePending = new DateTimeOffset(2025, 07, 28, 1, 2, 3, TimeSpan.Zero), + SoftDeletePending = new DateTimeOffset(2025, 07, 28, 2, 3, 4, TimeSpan.Zero), + SoftDeleted = new DateTimeOffset(2025, 07, 28, 3, 4, 5, TimeSpan.Zero) + }, + FileClassifications = new List + { + new () + { + Celebrity = true, + Id = 1, + Name = "Celebrity", + FileDetails = + new List { new () { DirectoryName = new ("mock-directory-name2") , UpdatedOn = new (2025, 07, 28, 1, 2, 3, TimeSpan.Zero) } }, + FileNameParts = new List { new () { Text = "mock-file-name-part" } } + } + }, + FileSize = 1245, + IsImage = true, + FileCreated = new (2025, 07, 28, 5, 6, 7, TimeSpan.Zero), + FileLastModified = new (2025, 07, 28, 10, 20, 30, TimeSpan.Zero), + FileLastViewed = new DateTimeOffset(2025, 07, 28, 11, 22, 33, TimeSpan.Zero), + UpdatedBy = "mock-user-name", + UpdatedOn = new (2025, 07, 28, 8, 7, 9, TimeSpan.Zero), + MoveRequired = true + } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..b0e05a6 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "mock-file-handle" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs new file mode 100644 index 0000000..0c9c0cd --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileHandleShould.cs @@ -0,0 +1,24 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class FileHandleShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new FileHandle { Value = "mock-file-handle" } + .ToJson() + .ShouldMatchApproved(); + + [Fact] + public void DefineTheImplicitConversion() + { + var fileHandle = new FileHandle("mock-file-handle"); + + string sut = fileHandle; + + sut.ShouldBe("mock-file-handle"); + } +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..4b46653 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,3 @@ +{ + "value": 68 +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs new file mode 100644 index 0000000..7f3ba85 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileIdShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class FileIdShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new FileId { Value = 68 } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..86fa5f9 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,13 @@ +{ + "id": 0, + "text": "", + "fileClassifications": [ + { + "id": 1, + "name": "", + "fileDetails": [], + "celebrity": false, + "fileNameParts": [] + } + ] +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs new file mode 100644 index 0000000..a261002 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNamePartShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class FileNamePartShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new FileNamePart { FileClassifications = new List { new() { Id = 1 } } } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..5259b18 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "mock-file-name" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs new file mode 100644 index 0000000..d959946 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileNameShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class FileNameShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new FileName { Value = "mock-file-name" } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..25b4d72 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,4 @@ +{ + "width": 123, + "height": 456 +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs new file mode 100644 index 0000000..041fba4 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/ImageDetailShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class ImageDetailShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new ImageDetail ( 123, 456) + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj b/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj new file mode 100644 index 0000000..391e078 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AStar.Dev.Infrastructure.Tests.Unit.csproj @@ -0,0 +1,28 @@ + + + + net9.0 + enable + enable + false + + + + + + + + + + + + + + + + + + + + + diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..df26053 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,4 @@ +{ + "enableLogging": true, + "includeSensitiveData": true +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs new file mode 100644 index 0000000..046754a --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AStarDbContextOptionsShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.Data; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.Tests.Unit; + +public class AStarDbContextOptionsShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new AStarDbContextOptions { EnableLogging = true, IncludeSensitiveData = true } + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..3eb7e96 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,4 @@ +{ + "updatedBy": "Test User", + "updatedOn": "2000-01-01T00:00:00+00:00" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs new file mode 100644 index 0000000..12c2a8a --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs @@ -0,0 +1,18 @@ +using AStar.Dev.Infrastructure.Data; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.Tests.Unit; + +public class AuditableEntityShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new MockAuditableEntity { UpdatedBy = "Test User", UpdatedOn = new (2000, 1, 1, 0, 0, 0, TimeSpan.Zero) } + .ToJson() + .ShouldMatchApproved(); + + private class MockAuditableEntity : AuditableEntity + { + } +} diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..e8c3b68 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,3 @@ +{ + "value": "Clearly, this is not a valid connection string" +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs new file mode 100644 index 0000000..b0c76f7 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/ConnectionStringShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.Data; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.Tests.Unit; + +public class ConnectionStringShould +{ + [Fact] + public void ContainTheExpectedProperties() + => new ConnectionString { Value = "Clearly, this is not a valid connection string" } + .ToJson() + .ShouldMatchApproved(); +} From 0b00883f704502757882964bd9ee08d9e9e581a2 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sat, 26 Jul 2025 23:12:07 +0100 Subject: [PATCH 3/6] Closer to required test coverage but not quiet there --- ...hould.ContainTheExpectedProperties.approved.txt | 5 +++++ .../Models/FileSizeShould.cs | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.ContainTheExpectedProperties.approved.txt create mode 100644 test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.ContainTheExpectedProperties.approved.txt b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.ContainTheExpectedProperties.approved.txt new file mode 100644 index 0000000..8e2ecfe --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.ContainTheExpectedProperties.approved.txt @@ -0,0 +1,5 @@ +{ + "fileLength": 1, + "height": 2, + "width": 3 +} \ No newline at end of file diff --git a/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs new file mode 100644 index 0000000..ae5d3d6 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.FilesDb.Tests.Unit/Models/FileSizeShould.cs @@ -0,0 +1,14 @@ +using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Utilities; +using Shouldly; + +namespace AStar.Dev.Infrastructure.FilesDb.Tests.Unit.Models; + +public class FileSizeShould +{ + [Fact] + public void ContainTheExpectedProperties() + => FileSize.Create(1, 2, 3) + .ToJson() + .ShouldMatchApproved(); +} From 2d609d05efec927e22d71ba57d4ec991c52873aa Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sun, 27 Jul 2025 22:25:23 +0100 Subject: [PATCH 4/6] Add the tests from the other project And add any missing ones / fix bugs in the original code --- DatabaseTesting.sln | 14 +++ .../AStar.Dev.Utilities.xml | 96 +++++++++++-------- .../AStar.Dev.Utilities/RegexExtensions.cs | 8 +- .../AStar.Dev.Utilities/StringExtensions.cs | 2 +- .../Fixtures/MockFilesContext.cs | 60 ------------ ...Technical.Debt.Reporting.Tests.Unit.csproj | 49 ++++++++++ .../RefactorAttributeShould.cs | 39 ++++++++ .../AStar.Dev.Utilities.Tests.Unit.csproj | 49 ++++++++++ .../AnyClass.cs | 8 ++ .../AStar.Dev.Utilities.Tests.Unit/AnyEnum.cs | 7 ++ ...eserialisationSettingsSetting.approved.txt | 31 ++++++ .../ConstantsShould.cs | 10 ++ .../EncryptionExtensionsShould.cs | 12 +++ .../EnumExtensionsShould.cs | 16 ++++ .../LinqExtensionsShould.cs | 12 +++ ...WhichReturnsTheExpectedString.approved.txt | 4 + .../ObjectExtensionsShould.cs | 10 ++ .../RegexExtensionsShould.cs | 54 +++++++++++ .../StringExtensionsShould.cs | 76 +++++++++++++++ 19 files changed, 450 insertions(+), 107 deletions(-) delete mode 100644 support/DbContextHelpers/Fixtures/MockFilesContext.cs create mode 100644 test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj create mode 100644 test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/RefactorAttributeShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/AnyClass.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/AnyEnum.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.ContainTheExpectedWebDeserialisationSettingsSetting.approved.txt create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/EncryptionExtensionsShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/EnumExtensionsShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/LinqExtensionsShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.ContainTheToJsonMethodWhichReturnsTheExpectedString.approved.txt create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/RegexExtensionsShould.cs create mode 100644 test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs diff --git a/DatabaseTesting.sln b/DatabaseTesting.sln index 10962ba..05af0cc 100644 --- a/DatabaseTesting.sln +++ b/DatabaseTesting.sln @@ -40,6 +40,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.Te EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Infrastructure.FilesDb.Tests.Unit", "test\AStar.Dev.Infrastructure.FilesDb.Tests.Unit\AStar.Dev.Infrastructure.FilesDb.Tests.Unit.csproj", "{019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Utilities.Tests.Unit", "test\AStar.Dev.Utilities.Tests.Unit\AStar.Dev.Utilities.Tests.Unit.csproj", "{55EB2B02-1528-45B8-A460-93F269527272}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AStar.Dev.Technical.Debt.Reporting.Tests.Unit", "test\AStar.Dev.Technical.Debt.Reporting.Tests.Unit\AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj", "{3C872AF9-A2A3-4CB8-B7BB-FC1BC3B57A82}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -78,6 +82,14 @@ Global {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Debug|Any CPU.Build.0 = Debug|Any CPU {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Release|Any CPU.ActiveCfg = Release|Any CPU {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670}.Release|Any CPU.Build.0 = Release|Any CPU + {55EB2B02-1528-45B8-A460-93F269527272}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {55EB2B02-1528-45B8-A460-93F269527272}.Debug|Any CPU.Build.0 = Debug|Any CPU + {55EB2B02-1528-45B8-A460-93F269527272}.Release|Any CPU.ActiveCfg = Release|Any CPU + {55EB2B02-1528-45B8-A460-93F269527272}.Release|Any CPU.Build.0 = Release|Any CPU + {3C872AF9-A2A3-4CB8-B7BB-FC1BC3B57A82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3C872AF9-A2A3-4CB8-B7BB-FC1BC3B57A82}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3C872AF9-A2A3-4CB8-B7BB-FC1BC3B57A82}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3C872AF9-A2A3-4CB8-B7BB-FC1BC3B57A82}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -96,5 +108,7 @@ Global {626B3E85-6C5D-4D8B-96BB-BF2D375326CA} = {D61F13DC-3A32-42BE-8687-F795D7332A51} {1EC059E7-7C8D-4492-8C07-30BD79AEE465} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} {019990B2-EFCD-4FB1-9FD1-CD98CCBFF670} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} + {55EB2B02-1528-45B8-A460-93F269527272} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} + {3C872AF9-A2A3-4CB8-B7BB-FC1BC3B57A82} = {D96E7D57-B3CF-4792-8532-59F03453A8B6} EndGlobalSection EndGlobal diff --git a/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml b/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml index 76938df..63a7ec0 100644 --- a/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml +++ b/support/AStar.Dev.Utilities/AStar.Dev.Utilities.xml @@ -124,7 +124,7 @@ Pattern:
- ^[a-z]+$ + [a-z]
Options:
@@ -133,11 +133,7 @@ Explanation:
- ○ Match if at the beginning of the string. -
- ○ Match a character in the set [a-z] atomically at least once. -
- ○ Match if at the end of the string or if before an ending newline. + ○ Match a character in the set [a-z].
@@ -146,7 +142,7 @@ Pattern:
- ^[A-Z]+$ + [A-Z]
Options:
@@ -155,11 +151,7 @@ Explanation:
- ○ Match if at the beginning of the string. -
- ○ Match a character in the set [A-Z] atomically at least once. -
- ○ Match if at the end of the string or if before an ending newline. + ○ Match a character in the set [A-Z].
@@ -168,7 +160,7 @@ Pattern:
- ^[A-Z]+$ + [0-9]
Options:
@@ -177,11 +169,7 @@ Explanation:
- ○ Match if at the beginning of the string. -
- ○ Match a character in the set [A-Z] atomically at least once. -
- ○ Match if at the end of the string or if before an ending newline. + ○ Match a character in the set [0-9].
@@ -190,7 +178,7 @@ Pattern:
- [!-\\/:-@[-`{-~] + [!-\\/:-@[-`¬{-~]
Options:
@@ -199,7 +187,7 @@ Explanation:
- ○ Match a character in the set [!-/:-@[-`{-~]. + ○ Match a character in the set [!-/:-@[-`{-~\u00AC].
@@ -329,14 +317,6 @@ The text being scanned by the regular expression. true if a possible match was found; false if no more matches are possible. - - Determine whether - - at base.runtextpos is a match for the regular expression. - - The text being scanned by the regular expression. - true if the regular expression matches at the current position; otherwise, false. - Custom-derived type for the UppercaseLettersRegex method. @@ -377,47 +357,79 @@ The text being scanned by the regular expression. true if a possible match was found; false if no more matches are possible. - - Determine whether + + Custom-derived type for the DigitRegex method. + + + + Cached, thread-safe singleton instance. + + + Initializes the instance. + + + Provides a factory for creating + + instances to be used by methods on. + + + + Creates an instance of a + + used by methods on. + + + + Provides the runner that contains the custom logic implementing the specified regular expression. + + + Scan the - at base.runtextpos is a match for the regular expression. + starting from base.runtextstart for the next match. The text being scanned by the regular expression. - true if the regular expression matches at the current position; otherwise, false. - + + Search + + starting from base.runtextpos for the next location a match could possibly start. + + The text being scanned by the regular expression. + true if a possible match was found; false if no more matches are possible. + + Custom-derived type for the SpecialCharacterRegex method. - + Cached, thread-safe singleton instance. - + Initializes the instance. - + Provides a factory for creating instances to be used by methods on. - + Creates an instance of a used by methods on. - + Provides the runner that contains the custom logic implementing the specified regular expression. - + Scan the starting from base.runtextstart for the next match. The text being scanned by the regular expression. - + Search starting from base.runtextpos for the next location a match could possibly start. @@ -429,8 +441,8 @@ Helper methods used by generated-derived implementations. - - Supports searching for characters in or not in "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~". + + Supports searching for characters in or not in "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¬". diff --git a/support/AStar.Dev.Utilities/RegexExtensions.cs b/support/AStar.Dev.Utilities/RegexExtensions.cs index 9b61eb8..6ae5995 100644 --- a/support/AStar.Dev.Utilities/RegexExtensions.cs +++ b/support/AStar.Dev.Utilities/RegexExtensions.cs @@ -34,15 +34,15 @@ public static bool ContainsAtLeastOneDigit(this string value) => public static bool ContainsAtLeastOneSpecialCharacter(this string value) => SpecialCharacterRegex().IsMatch(value); - [GeneratedRegex("^[a-z]+$", RegexOptions.CultureInvariant, 1_000)] + [GeneratedRegex("[a-z]", RegexOptions.CultureInvariant, 1_000)] private static partial Regex LowercaseLettersRegex(); - [GeneratedRegex("^[A-Z]+$", RegexOptions.CultureInvariant, 1_000)] + [GeneratedRegex("[A-Z]", RegexOptions.CultureInvariant, 1_000)] private static partial Regex UppercaseLettersRegex(); - [GeneratedRegex("^[A-Z]+$", RegexOptions.CultureInvariant, 1_000)] + [GeneratedRegex("[0-9]", RegexOptions.CultureInvariant, 1_000)] private static partial Regex DigitRegex(); - [GeneratedRegex(@"[!-\/:-@[-`{-~]", RegexOptions.CultureInvariant, 1_000)] + [GeneratedRegex(@"[!-\/:-@[-`¬{-~]", RegexOptions.CultureInvariant, 1_000)] private static partial Regex SpecialCharacterRegex(); } diff --git a/support/AStar.Dev.Utilities/StringExtensions.cs b/support/AStar.Dev.Utilities/StringExtensions.cs index fb19a8d..4fc0c15 100644 --- a/support/AStar.Dev.Utilities/StringExtensions.cs +++ b/support/AStar.Dev.Utilities/StringExtensions.cs @@ -88,7 +88,7 @@ public static bool IsNumberOnly(this string fileName) => /// The maximum length the string should be truncated to if required /// The specified string or the truncated version public static string TruncateIfRequired(this string value, int truncateLength) => - value.Length > truncateLength ? value[..350] : value; + value.Length > truncateLength ? value[..truncateLength] : value; /// /// The RemoveTrailing method will, as the name suggests, remove the specified character from the end if it exists diff --git a/support/DbContextHelpers/Fixtures/MockFilesContext.cs b/support/DbContextHelpers/Fixtures/MockFilesContext.cs deleted file mode 100644 index 3a50314..0000000 --- a/support/DbContextHelpers/Fixtures/MockFilesContext.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System.Text.Json; -using AStar.Dev.Infrastructure.FilesDb.Data; -using AStar.Dev.Infrastructure.FilesDb.Models; - -namespace DbContextHelpers.Fixtures; - -public class MockFilesContext : IDisposable -{ - private bool disposedValue; - - public MockFilesContext() - { - Context = new(new ()); - - _ = Context.Database.EnsureCreated(); - - AddMockFiles(Context); - _ = Context.SaveChanges(); - } - - public FilesContext Context { get; } - - public void Dispose() - { - // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method - Dispose(true); - GC.SuppressFinalize(this); - } - - protected virtual void Dispose(bool disposing) - { - if (disposedValue) - { - return; - } - - if (disposing) - { - Context.Dispose(); - } - - disposedValue = true; - } - - private static void AddMockFiles(FilesContext mockFilesContext) - { - var filesAsJson = File.ReadAllText(@"TestFiles\files.json"); - - var listFromJson = JsonSerializer.Deserialize>(filesAsJson)!; - - foreach (var item in listFromJson) - { - if (mockFilesContext.FileDetails.FirstOrDefault(f => f.FileName == item.FileName && f.DirectoryName == item.DirectoryName) == null) - { - mockFilesContext.FileDetails.Add(item); - mockFilesContext.SaveChanges(); - } - } - } -} diff --git a/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj b/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj new file mode 100644 index 0000000..d3a291f --- /dev/null +++ b/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/AStar.Dev.Technical.Debt.Reporting.Tests.Unit.csproj @@ -0,0 +1,49 @@ + + + + net9.0 + enable + enable + false + AStar.Dev.Technical.Debt.Reporting + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + True + 1701;1702;IDE0058; + + + + True + 1701;1702;IDE0058; + + + diff --git a/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/RefactorAttributeShould.cs b/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/RefactorAttributeShould.cs new file mode 100644 index 0000000..ac124a3 --- /dev/null +++ b/test/AStar.Dev.Technical.Debt.Reporting.Tests.Unit/RefactorAttributeShould.cs @@ -0,0 +1,39 @@ +using System.Reflection; + +namespace AStar.Dev.Technical.Debt.Reporting; + +public class RefactorAttributeShould +{ + [Fact] + public void ShouldContainOnlyExpectedPublicPropertiesWithCorrectValues() + { + const int expectedPainEstimate = 5; + const int expectedHoursToResolve = 3; + const string expectedDescription = "Refactor this mess"; + + var attribute = new RefactorAttribute(expectedPainEstimate, expectedHoursToResolve, expectedDescription); + + var expectedProperties = new[] + { + new { Name = "PainEstimate", Type = typeof(int), Value = (object)expectedPainEstimate }, + new { Name = "HoursToResolve", Type = typeof(int), Value = (object)expectedHoursToResolve }, + new { Name = "Description", Type = typeof(string), Value = (object)expectedDescription }, + new { Name = "TypeId", Type = typeof(object), Value = attribute.TypeId } + }; + + var actualProperties = typeof(RefactorAttribute) + .GetProperties(BindingFlags.Instance | BindingFlags.Public); + + actualProperties.Length.ShouldBe(expectedProperties.Length); + + foreach (var expected in expectedProperties) + { + var actual = actualProperties.SingleOrDefault(p => p.Name == expected.Name); + actual.ShouldNotBeNull(); + actual.PropertyType.ShouldBe(expected.Type); + + var actualValue = actual.GetValue(attribute); + actualValue.ShouldBe(expected.Value); + } + } +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj b/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj new file mode 100644 index 0000000..155ac53 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/AStar.Dev.Utilities.Tests.Unit.csproj @@ -0,0 +1,49 @@ + + + + net9.0 + enable + enable + false + AStar.Dev.Utilities + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + True + 1701;1702;IDE0058; + + + + True + 1701;1702;IDE0058; + + + diff --git a/test/AStar.Dev.Utilities.Tests.Unit/AnyClass.cs b/test/AStar.Dev.Utilities.Tests.Unit/AnyClass.cs new file mode 100644 index 0000000..372688c --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/AnyClass.cs @@ -0,0 +1,8 @@ +namespace AStar.Dev.Utilities; + +internal sealed class AnyClass +{ + public int AnyInt { get; set; } + + public string AnyString { get; set; } = string.Empty; +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/AnyEnum.cs b/test/AStar.Dev.Utilities.Tests.Unit/AnyEnum.cs new file mode 100644 index 0000000..ac0e95e --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/AnyEnum.cs @@ -0,0 +1,7 @@ +namespace AStar.Dev.Utilities; + +internal enum AnyEnum +{ + NotDefined, + Defined +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.ContainTheExpectedWebDeserialisationSettingsSetting.approved.txt b/test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.ContainTheExpectedWebDeserialisationSettingsSetting.approved.txt new file mode 100644 index 0000000..c91a12f --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.ContainTheExpectedWebDeserialisationSettingsSetting.approved.txt @@ -0,0 +1,31 @@ +{ + "converters": [], + "typeInfoResolver": null, + "typeInfoResolverChain": [], + "allowOutOfOrderMetadataProperties": false, + "allowTrailingCommas": false, + "defaultBufferSize": 16384, + "encoder": null, + "dictionaryKeyPolicy": null, + "ignoreNullValues": false, + "defaultIgnoreCondition": 0, + "numberHandling": 1, + "preferredObjectCreationHandling": 0, + "ignoreReadOnlyProperties": false, + "ignoreReadOnlyFields": false, + "includeFields": false, + "maxDepth": 0, + "propertyNamingPolicy": {}, + "propertyNameCaseInsensitive": true, + "readCommentHandling": 0, + "unknownTypeHandling": 0, + "unmappedMemberHandling": 0, + "writeIndented": false, + "indentCharacter": " ", + "indentSize": 2, + "referenceHandler": null, + "newLine": "\n", + "respectNullableAnnotations": false, + "respectRequiredConstructorParameters": false, + "isReadOnly": false +} \ No newline at end of file diff --git a/test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.cs new file mode 100644 index 0000000..1b35a30 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/ConstantsShould.cs @@ -0,0 +1,10 @@ +namespace AStar.Dev.Utilities; + +public sealed class ConstantsShould +{ + [Fact] + public void ContainTheExpectedWebDeserialisationSettingsSetting() => + Constants.WebDeserialisationSettings + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/EncryptionExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/EncryptionExtensionsShould.cs new file mode 100644 index 0000000..f7b0769 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/EncryptionExtensionsShould.cs @@ -0,0 +1,12 @@ +namespace AStar.Dev.Utilities; + +public class EncryptionExtensionsShould +{ + [Fact] + public void EncryptAsExpected() + => "irrelevant-string".Encrypt().ShouldBe("f4eR8dX1bWiwTF/GNd02dTl2wnPfj9jFHWi3ZVCxceQ="); + + [Fact] + public void DecryptAsExpected() + => "f4eR8dX1bWiwTF/GNd02dTl2wnPfj9jFHWi3ZVCxceQ=".Decrypt().ShouldBe("irrelevant-string"); +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/EnumExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/EnumExtensionsShould.cs new file mode 100644 index 0000000..fafdde4 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/EnumExtensionsShould.cs @@ -0,0 +1,16 @@ +namespace AStar.Dev.Utilities; + +public sealed class EnumExtensionsShould +{ + [Fact] + public void ContainTheParseMethodReturningTheExpectedValue() => + "Defined".ParseEnum().ShouldBe(AnyEnum.Defined); + + [Fact] + public void ContainTheParseMethodWhichThrowsArgumentExceptionWhenTheValueIsNotFound() + { + Action parseStringAction = () => "ThisDoesntExitst".ParseEnum(); + + _ = parseStringAction.ShouldThrow(); + } +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/LinqExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/LinqExtensionsShould.cs new file mode 100644 index 0000000..8ee64dd --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/LinqExtensionsShould.cs @@ -0,0 +1,12 @@ +namespace AStar.Dev.Utilities; + +public class LinqExtensionsShould +{ + [Fact] + public void ContainTheForEachExtensionOnIEnumerableAndTriggerTheSuppliedAction() + { + var exception = Record.Exception(() => new List { "", "z", "a" }.AsEnumerable().ForEach(_ => { })); + + Assert.Null(exception); + } +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.ContainTheToJsonMethodWhichReturnsTheExpectedString.approved.txt b/test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.ContainTheToJsonMethodWhichReturnsTheExpectedString.approved.txt new file mode 100644 index 0000000..3eb293f --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.ContainTheToJsonMethodWhichReturnsTheExpectedString.approved.txt @@ -0,0 +1,4 @@ +{ + "anyInt": 0, + "anyString": "" +} \ No newline at end of file diff --git a/test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.cs new file mode 100644 index 0000000..ce87f65 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/ObjectExtensionsShould.cs @@ -0,0 +1,10 @@ +namespace AStar.Dev.Utilities; + +public sealed class ObjectExtensionsShould +{ + [Fact] + public void ContainTheToJsonMethodWhichReturnsTheExpectedString() => + new AnyClass() + .ToJson() + .ShouldMatchApproved(); +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/RegexExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/RegexExtensionsShould.cs new file mode 100644 index 0000000..c7efc46 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/RegexExtensionsShould.cs @@ -0,0 +1,54 @@ +namespace AStar.Dev.Utilities; + +public class RegexExtensionsShould +{ + [Theory] + [InlineData("", false)] + [InlineData("AAA", false)] + [InlineData("123", false)] + [InlineData("a", true)] + [InlineData("AaA", true)] + [InlineData("12a", true)] + public void ContainTheContainsAtLeastOneLowercaseLetterExtensionReturningTheExpectedResponse(string sut, bool expectedResponse) + => sut.ContainsAtLeastOneLowercaseLetter().ShouldBe(expectedResponse); + + [Theory] + [InlineData("", false)] + [InlineData("123", false)] + [InlineData("a", false)] + [InlineData("AAA", true)] + [InlineData("aaA", true)] + [InlineData("12A", true)] + public void ContainTheContainsAtLeastOneUppercaseLetterExtensionReturningTheExpectedResponse(string sut, bool expectedResponse) + => sut.ContainsAtLeastOneUppercaseLetter().ShouldBe(expectedResponse); + + [Theory] + [InlineData("", false)] + [InlineData("a", false)] + [InlineData("AAA", false)] + [InlineData("123", true)] + [InlineData("aa1", true)] + [InlineData("12A", true)] + public void ContainTheContainsAtLeastOneDigitExtensionReturningTheExpectedResponse(string sut, bool expectedResponse) + => sut.ContainsAtLeastOneDigit().ShouldBe(expectedResponse); + + [Theory] + [InlineData("", false)] + [InlineData("a", false)] + [InlineData("AAA", false)] + [InlineData("123[", true)] + [InlineData("aa1!", true)] + [InlineData("12A-", true)] + [InlineData("12A/", true)] + [InlineData(@"12A\", true)] + [InlineData("12A:", true)] + [InlineData("12A@", true)] + [InlineData("12A`", true)] + [InlineData("12A{", true)] + [InlineData("12A}", true)] + [InlineData("12A¬", true)] + [InlineData("12A#", true)] + [InlineData("12A~", true)] + public void ContainTheContainsAtLeastOneSpecialCharacterExtensionReturningTheExpectedResponse(string sut, bool expectedResponse) + => sut.ContainsAtLeastOneSpecialCharacter().ShouldBe(expectedResponse); +} diff --git a/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs b/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs new file mode 100644 index 0000000..689c576 --- /dev/null +++ b/test/AStar.Dev.Utilities.Tests.Unit/StringExtensionsShould.cs @@ -0,0 +1,76 @@ +namespace AStar.Dev.Utilities; + +public sealed class StringExtensionsShould +{ + private const string AnyJson = "{\"AnyInt\":0,\"AnyString\":\"\"}"; + private const string NotNullString = "value does not matter"; +#pragma warning disable CA1805 + private readonly string? nullString = null; +#pragma warning restore CA1805 + private const string WhitespaceString = " "; + + [Fact] + public void ContainTheIsNullMethodWhichReturnsTheResult() => + nullString.IsNull().ShouldBeTrue(); + + [Fact] + public void ContainTheIsNotNullMethodWhichReturnsTheResult() => + NotNullString.IsNotNull().ShouldBeTrue(); + + [Fact] + public void ContainTheIsNullOrWhiteSpaceMethodWhichReturnsTheResult() => + WhitespaceString.IsNullOrWhiteSpace().ShouldBeTrue(); + + [Fact] + public void ContainTheIsNotNullOrWhiteSpaceMethodWhichReturnsTheResult() => + NotNullString.IsNotNullOrWhiteSpace().ShouldBeTrue(); + + [Fact] + public void ContainTheFromJsonMethodWhichReturnsTheResult() => + AnyJson.FromJson().ShouldBeEquivalentTo(new AnyClass()); + + [Fact] + public void ContainTheFromJsonTakingJsonSerializerOptionsMethodWhichReturnsTheResult() => + AnyJson.FromJson(new()).ShouldBeEquivalentTo(new AnyClass()); + + [Theory] + [InlineData("no-Extension", false)] + [InlineData("Wrong-Extension.txt", false)] + [InlineData("Wrong-Extension.DOC", false)] + [InlineData("Wrong-Extension.PdF", false)] + [InlineData("Correct-Extension.jpG", true)] + [InlineData("Correct-Extension.jpeG", true)] + [InlineData("Correct-Extension.bmp", true)] + [InlineData("Write-Extension.png", true)] + [InlineData("Correct-Extension.gif", true)] + public void ContainTheIsImageExtensionReturningTheExpectedResults(string fileName, bool expectedResponse) => + fileName.IsImage().ShouldBe(expectedResponse); + + [Theory] + [InlineData("no-Truncation", 20, "no-Truncation")] + [InlineData("Small-String-Truncation.txt", 10, "Small-Stri")] + [InlineData("Small-String-Truncation.DOC", 15, "Small-String-Tr")] + [InlineData("Small-String-Truncation.PdF", 20, "Small-String-Truncat")] + [InlineData("Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String--Truncation.jpG", 100, + "Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-Str")] + [InlineData("Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String--Truncation.jpeG", 120, + "Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Lar")] + [InlineData("Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String--Truncation.bmp", 140, + "Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-Stri")] + [InlineData("Write-Truncation.png", 10, "Write-Trun")] + [InlineData("Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String--Truncation.gif", 160, + "Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String-Large-String--Tru")] + public void ContainTheTruncateIfRequiredReturningTheExpectedResults(string fileName, int truncateLength, string expectedResponse) => + fileName.TruncateIfRequired(truncateLength).ShouldBe(expectedResponse); + + [Theory] + [InlineData("no-number", false)] + [InlineData("number-at-the-end-123", false)] + [InlineData("123-number-at-the-beginning", false)] + [InlineData("number-in-the-123-middle", false)] + [InlineData("1", true)] + [InlineData("12", true)] + [InlineData("123456", true)] + public void ContainTheIsNumberOnlyExtensionReturningTheExpectedResults(string fileName, bool expectedResponse) => + fileName.IsNumberOnly().ShouldBe(expectedResponse); +} From 631f4174806e59acc44467ff09667b20fac5b6f2 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sun, 27 Jul 2025 22:31:17 +0100 Subject: [PATCH 5/6] Fix namespaces... not sure how messed up --- .../Data/Configurations/DeletionStatusConfiguration.cs | 3 ++- .../Data/Configurations/DirectoryNameConfiguration.cs | 3 ++- .../Data/Configurations/EventConfiguration.cs | 3 ++- .../Data/Configurations/EventTypeConfiguration.cs | 1 + .../Data/Configurations/FileDetailConfiguration.cs | 3 ++- .../Data/Configurations/ImageDetailConfiguration.cs | 1 + .../Configurations/ComplexPropertyBuilderConfiguration.cs | 6 ++---- .../Data/Configurations/IComplexPropertyConfiguration.cs | 2 +- 8 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs index e5f82e2..6751be6 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs @@ -1,4 +1,5 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Infrastructure.Data.Configurations; +using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs index 87511b5..8e7ee66 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs @@ -1,4 +1,5 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Infrastructure.Data.Configurations; +using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventConfiguration.cs index a2eb627..a897bcf 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventConfiguration.cs @@ -1,4 +1,5 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Infrastructure.Data.Configurations; +using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs index 7efc647..e4bd15a 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs @@ -1,3 +1,4 @@ +using AStar.Dev.Infrastructure.Data.Configurations; using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs index 19f0f3f..9af26af 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/FileDetailConfiguration.cs @@ -1,4 +1,5 @@ -using AStar.Dev.Infrastructure.FilesDb.Models; +using AStar.Dev.Infrastructure.Data.Configurations; +using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs index 916c451..3d87b59 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs @@ -1,3 +1,4 @@ +using AStar.Dev.Infrastructure.Data.Configurations; using AStar.Dev.Infrastructure.FilesDb.Models; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; diff --git a/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs b/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs index 4a4cb50..f5256ea 100644 --- a/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs +++ b/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs @@ -1,6 +1,6 @@ using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace AStar.Dev.Infrastructure; +namespace AStar.Dev.Infrastructure.Data.Configurations; /// /// @@ -12,9 +12,7 @@ public static class ComplexPropertyBuilderConfiguration /// /// /// - public static ComplexPropertyBuilder Configure( - this ComplexPropertyBuilder propertyBuilder, - IComplexPropertyConfiguration configuration) + public static ComplexPropertyBuilder Configure(this ComplexPropertyBuilder propertyBuilder, IComplexPropertyConfiguration configuration) { configuration.Configure(propertyBuilder); diff --git a/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs b/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs index 2e387e9..53ac57b 100644 --- a/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs +++ b/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs @@ -1,6 +1,6 @@ using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace AStar.Dev.Infrastructure; +namespace AStar.Dev.Infrastructure.Data.Configurations; /// /// From 6c87a61bf3c004b8d2f3a64060ab26a54ad93091 Mon Sep 17 00:00:00 2001 From: Jason Barden Date: Sun, 27 Jul 2025 22:51:57 +0100 Subject: [PATCH 6/6] Add missing test for the ComplexPropertyBuilderConfiguration.cs which triggered a few other code changes but, test-wise, it compiles and passes --- .../DeletionStatusConfiguration.cs | 6 +- .../DirectoryNameConfiguration.cs | 4 +- .../Configurations/EventTypeConfiguration.cs | 4 +- .../ImageDetailConfiguration.cs | 4 +- .../AStar.Dev.Infrastructure.xml | 58 +++++++++++-------- .../ComplexPropertyBuilderConfiguration.cs | 2 +- .../IComplexPropertyConfiguration.cs | 4 +- .../AuditableEntityShould.cs | 2 +- ...mplexPropertyBuilderConfigurationShould.cs | 40 +++++++++++++ 9 files changed, 84 insertions(+), 40 deletions(-) create mode 100644 test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs index 6751be6..d7a8b8a 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DeletionStatusConfiguration.cs @@ -7,13 +7,13 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data.Configurations; internal sealed class DeletionStatusConfiguration : IComplexPropertyConfiguration { - public ComplexPropertyBuilder Configure(ComplexPropertyBuilder builder) + public void Configure(ComplexPropertyBuilder builder) { builder .Property(deletionStatus => deletionStatus.HardDeletePending) .HasColumnName("HardDeletePending") .HasColumnType("datetimeoffset"); - + builder .Property(deletionStatus => deletionStatus.SoftDeletePending) .HasColumnName("SoftDeletePending") @@ -23,7 +23,5 @@ public ComplexPropertyBuilder Configure(ComplexPropertyBuilder deletionStatus.SoftDeleted) .HasColumnName("SoftDeleted") .HasColumnType("datetimeoffset"); - - return builder; } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs index 8e7ee66..a78732d 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/DirectoryNameConfiguration.cs @@ -7,12 +7,10 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data.Configurations; internal sealed class DirectoryNameConfiguration : IComplexPropertyConfiguration { - public ComplexPropertyBuilder Configure(ComplexPropertyBuilder builder) + public void Configure(ComplexPropertyBuilder builder) { builder.Property(directoryName => directoryName.Value) .HasColumnName("DirectoryName") .HasColumnType("nvarchar(256)"); - - return builder; } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs index e4bd15a..4a6395b 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/EventTypeConfiguration.cs @@ -7,11 +7,9 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data.Configurations; internal sealed class EventTypeConfiguration : IComplexPropertyConfiguration { - public ComplexPropertyBuilder Configure(ComplexPropertyBuilder builder) + public void Configure(ComplexPropertyBuilder builder) { builder.Property(eventType => eventType.Value).HasColumnName("EventType").IsRequired(); builder.Property(eventType => eventType.Name).HasColumnName("EventName").IsRequired(); - - return builder; } } diff --git a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs index 3d87b59..84b8120 100644 --- a/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs +++ b/src/AStar.Dev.Infrastructure.FilesDb/Data/Configurations/ImageDetailConfiguration.cs @@ -7,11 +7,9 @@ namespace AStar.Dev.Infrastructure.FilesDb.Data.Configurations; internal sealed class ImageDetailConfiguration : IComplexPropertyConfiguration { - public ComplexPropertyBuilder Configure(ComplexPropertyBuilder builder) + public void Configure(ComplexPropertyBuilder builder) { builder.Property(image => image.Width).HasColumnName("ImageWidth"); builder.Property(image => image.Height).HasColumnName("ImageHeight"); - - return builder; } } diff --git a/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml b/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml index beff89e..ff74872 100644 --- a/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml +++ b/src/AStar.Dev.Infrastructure/AStar.Dev.Infrastructure.xml @@ -34,52 +34,64 @@ Gets or sets the date and time of the update. This is specified in UTC - + - The class for use when configuring the context - + - Gets or sets the actual connection string + + + + - + - The implicit convertor from to a simple - The instance of to convert. - The simple string representation + - + - The implicit convertor from a simple to a - The instance of to convert. - The converted representation + + - + + The class for use when configuring the context - + + Gets or sets the actual connection string - - - - - + + The implicit convertor from + + to a simple + - + The instance of + + to convert. + + The simple string representation - + + The implicit convertor from a simple + + to a + - - + The instance of + + to convert. + + The converted representation diff --git a/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs b/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs index f5256ea..47b4d41 100644 --- a/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs +++ b/src/AStar.Dev.Infrastructure/Data/Configurations/ComplexPropertyBuilderConfiguration.cs @@ -12,7 +12,7 @@ public static class ComplexPropertyBuilderConfiguration /// /// /// - public static ComplexPropertyBuilder Configure(this ComplexPropertyBuilder propertyBuilder, IComplexPropertyConfiguration configuration) + public static ComplexPropertyBuilder Configure(this ComplexPropertyBuilder propertyBuilder, IComplexPropertyConfiguration configuration) { configuration.Configure(propertyBuilder); diff --git a/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs b/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs index 53ac57b..bc5c5f6 100644 --- a/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs +++ b/src/AStar.Dev.Infrastructure/Data/Configurations/IComplexPropertyConfiguration.cs @@ -5,11 +5,11 @@ namespace AStar.Dev.Infrastructure.Data.Configurations; /// /// /// -public interface IComplexPropertyConfiguration +public interface IComplexPropertyConfiguration { /// /// /// /// - public ComplexPropertyBuilder Configure(ComplexPropertyBuilder builder); + public void Configure(ComplexPropertyBuilder builder); } diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs index 12c2a8a..8d70af9 100644 --- a/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/AuditableEntityShould.cs @@ -12,7 +12,7 @@ public void ContainTheExpectedProperties() .ToJson() .ShouldMatchApproved(); - private class MockAuditableEntity : AuditableEntity + private sealed class MockAuditableEntity : AuditableEntity { } } diff --git a/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs b/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs new file mode 100644 index 0000000..5230163 --- /dev/null +++ b/test/AStar.Dev.Infrastructure.Tests.Unit/ComplexPropertyBuilderConfigurationShould.cs @@ -0,0 +1,40 @@ +using AStar.Dev.Infrastructure.Data.Configurations; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Metadata.Builders; + +namespace AStar.Dev.Infrastructure.Tests.Unit; + +public class ComplexPropertyBuilderConfigurationShould +{ + private sealed class DummyEntity + { + public Address Address { get; set; } = new(); + } + + private sealed class Address + { + public string Street { get; set; } = string.Empty; + } + + private sealed class TestConfiguration : IComplexPropertyConfiguration
+ { + public bool WasCalled { get; private set; } + + public void Configure(ComplexPropertyBuilder
builder) => WasCalled = true; + } + + [Fact] + public void Configure_ShouldInvokeConfigurationAndReturnSameBuilder() + { + var modelBuilder = new ModelBuilder(); + var entityBuilder = modelBuilder.Entity(); + var complexBuilder = entityBuilder.ComplexProperty(e => e.Address); + + var config = new TestConfiguration(); + + var result = complexBuilder.Configure(config); + + Assert.True(config.WasCalled); + Assert.Same(complexBuilder, result); + } +}