{"info":{"_postman_id":"aff47e65-cc1a-47c2-a552-7f8414a7106a","name":"Juno API","description":"<html><head></head><body><p>Welcome to the API documentation for our application!</p>\n<p>This documentation provides a comprehensive reference guide for developers looking to integrate with our API.</p>\n<p>The API is designed to facilitate communication between our application and other software systems by providing a set of well-defined endpoints, input parameters, output formats, and error responses.</p>\n<p>The documentation includes detailed descriptions of each endpoint, along with sample requests and responses to help developers get started quickly. We hope that this documentation makes it easy for you to build powerful applications that leverage the capabilities of our API.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>To access the endpoints of our API, you must provide a valid Bearer token in the <code>Authorization</code> header of each request. In order to generate an access token, sign in to your Juno workspace → on the left menue → Admin → Security → Developer Settings →Generate Personal Access Token (you can find more details in <a href=\"https://scribehow.com/shared/How_To_Generate_An_Access_Token_for_Juno_API__HmslUr3fT4iexWyRiuUetw\">this guide</a>) . Bearer token authentication is a widely used industry standard for API authentication, and it provides a secure way to authenticate requests to our API. You should never share your Bearer token with anyone else or include it in client-side code, as this could compromise the security of your application. If you suspect that your Bearer token has been compromised, please contact our support team immediately to obtain a new token.</p>\n<h3 id=\"querying-resources\">Querying Resources</h3>\n<p>The <code>ListQuery</code> interface defines a unified structure for searching different resources across all our API endpoints . This interface includes the following properties:</p>\n<ul>\n<li><p><code>filters</code> (optional): A set of filters that can be used to narrow down the search results. This can be any object that represents the filters, such as an array of key-value pairs.</p>\n</li>\n<li><p><code>limit</code> (optional): The maximum number of search results to return per request. If not specified, a default limit may be used.</p>\n</li>\n<li><p><code>skip</code> (optional): The number of search results to skip before returning the first result. This can be useful for implementing pagination.</p>\n</li>\n<li><p><code>sort</code> (optional): The sort order to use for the search results. This can be any object that represents the sort order, such as a JSON object.</p>\n</li>\n<li><p><code>select</code> (optional): The fields to include in the search results. This can be any object that represents the fields to select, such as a JSON object.</p>\n</li>\n</ul>\n<p>By using this unified structure across all our API endpoints, developers can easily search for different resources using a consistent set of parameters, making it easier to integrate with our API.</p>\n<p>The <code>filters</code> property is an optional property of the <code>ListQuery</code> interface that allows you to filter the search results based on certain criteria. It can be any object that represents the filters, such as an array of key-value pairs.</p>\n<p>The <code>filters</code> property uses partial MQL (MongoDB Query Language) objects, which means that you can use a subset of MongoDB's query language to specify the filter criteria. For example, you can use the <code>$eq</code> operator to match values exactly, or the <code>$in</code> operator to match values in a specified array.</p>\n<p>It's important to note that the filter criteria may differ according to the schema of the resource you are searching for. For example, if you are searching for users, the filter criteria may include properties such as <code>department</code>, <code>primaryEmail</code>, and <code>jobTitle</code>. On the other hand, if you are searching for Events, the filter criteria may include properties such as <code>eventType</code>, <code>userId</code>, and <code>startDate</code>.</p>\n<p>Therefore, it's important to refer to the documentation of the specific resource you are searching for to determine the appropriate filter criteria. This will ensure that you are using the correct filter criteria and getting the desired results.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1715607","collectionId":"aff47e65-cc1a-47c2-a552-7f8414a7106a","publishedId":"2s93Jut3MD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0077FF"},"publishDate":"2025-02-04T12:48:02.000Z"},"item":[{"name":"Users","item":[{"name":"List Users","id":"492bcc11-7016-4609-97d9-76caf1defd0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/users/.search","description":"<p>This API endpoint returns a list of users based on the specified search criteria.</p>\n<p>Request Body:</p>\n<ul>\n<li>The request body should be in JSON format, and include the following properties:<ul>\n<li><code>filters</code>: Optional. An object that represents the filter criteria for the search. Uses a subset of MongoDB's query language objects. Refer to the specific resource schema for the appropriate filter criteria. available filters are <code>location</code> , <code>managerId</code>, <code>modules</code> <code>department</code></li>\n<li><code>limit</code>: Optional. The maximum number of results to return. Default is 10 maximum 50.</li>\n<li><code>skip</code>: Optional. The number of results to skip before returning. Default is 0.</li>\n<li><code>sort</code>: Optional. An object that represents the sort criteria for the search. Uses a similar syntax as the MongoDB sort object. Refer to the specific resource schema for the appropriate sort criteria.</li>\n<li><code>select</code>: Optional. An object that represents the projection criteria for the search. Uses a similar syntax as the MongoDB project object. Refer to the specific resource schema for the appropriate projection criteria.</li>\n</ul>\n</li>\n</ul>\n<p>The response body will be in JSON format, and include an array of user objects. Each user object will include the properties from the Users schema:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>tid</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>primaryEmail</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>jobTitle</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>positionName</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>department</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>managerId</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>location</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>role</td>\n<td>FLOAT</td>\n<td></td>\n</tr>\n<tr>\n<td>modules</td>\n<td>ARRAY</td>\n<td></td>\n</tr>\n<tr>\n<td>dateEntered</td>\n<td>TIMESTAMP</td>\n<td></td>\n</tr>\n<tr>\n<td>lastActivity</td>\n<td>FLOAT</td>\n<td></td>\n</tr>\n<tr>\n<td>inactive</td>\n<td>BOOLEAN</td>\n<td></td>\n</tr>\n<tr>\n<td>deactivationDate</td>\n<td>TIMESTAMP</td>\n<td></td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>TIMESTAMP</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Upon successful completion, this endpoint returns a JSON response with the following fields:</p>\n<ul>\n<li>data (array): An array of user objects matching the specified search criteria.</li>\n<li>dataLength (integer): The number of user objects returned in the \"data\" field.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","public-api","users",".search"],"host":["api-prod","the-juno","com"],"query":[],"variable":[]}},"response":[{"id":"14ca2d78-7c27-43f8-9fb6-b2fa1c28c48b","name":"List Users by deparment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"department\": \"R&D\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/users/.search"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d8f21447-3875-4ac0-8b7c-f3fbeb6b4270","name":"List Users by Email","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"primaryEmail\": \"juno.sales-demo@the-juno.com\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/users/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1d6-4S/s6cjBHGJ2wGTWP3M9Nr2G56A\""},{"key":"vary","value":"Accept-Encoding"},{"key":"X-Cloud-Trace-Context","value":"805fcb321a4061ffa46f418674df520d;o=1"},{"key":"Date","value":"Thu, 16 Jan 2025 22:01:19 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Content-Length","value":"470"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 1,\n    \"data\": [\n        {\n            \"_id\": \"64ae8d32cb525e00095e8b76\",\n            \"primaryEmail\": \"juno.sales-demo@the-juno.com\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:23:30.148Z\",\n            \"displayName\": \"Juno Journey\",\n            \"firstName\": \"Juno Journey\",\n            \"lastName\": \"Journey\",\n            \"managerId\": null,\n            \"modules\": [\n                \"lxp\",\n                \"lms\",\n                \"development\"\n            ],\n            \"role\": 8,\n            \"updatedAt\": \"2025-01-16T21:59:53.450Z\",\n            \"department\": \" \",\n            \"employeeId\": \" \",\n            \"inactive\": false,\n            \"jobTitle\": \" \",\n            \"location\": \" \",\n            \"positionName\": \"Sales manager\"\n        }\n    ]\n}"}],"_postman_id":"492bcc11-7016-4609-97d9-76caf1defd0a"}],"id":"f9b2c7e0-fcf8-48d7-a1de-6faeaceac804","_postman_id":"f9b2c7e0-fcf8-48d7-a1de-6faeaceac804","description":""},{"name":"SCIM API","item":[{"name":"Create User","event":[{"listen":"test","script":{"id":"f1fcd4d5-0b4d-4d89-8753-b4ee07ddf795","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","","var jsonData = pm.response.json();","","pm.environment.set(\"id2\", jsonData.id);"],"type":"text/javascript"}}],"id":"231a39f8-991e-469c-b4fc-3a3d8b69def1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"UserName\": \"UserName222\",\r\n    \"Active\": true,\r\n    \"DisplayName\": \"lennay\",\r\n    \"schemas\": [\r\n        \"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User\",\r\n        \"urn:ietf:params:scim:schemas:core:2.0:User\"\r\n    ],\r\n  \"externalId\": \"${__UUID}\",\r\n    \"name\": {\r\n        \"formatted\": \"Adrew Ryan\",\r\n        \"familyName\": \"Ryan\",\r\n        \"givenName\": \"Andrew\"\r\n    },\r\n    \"emails\": [\r\n        {\r\n            \"Primary\": true,\r\n            \"type\": \"work\",\r\n            \"value\": \"testing@bob2.com\"\r\n        },\r\n        {\r\n            \"Primary\": false,\r\n            \"type\": \"home\",\r\n            \"value\": \"testinghome@bob3.com\"\r\n        }\r\n    ],\r\n    \"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User\": {\r\n    \t\t\"Department\": \"bob\",\r\n    \t\t\"manager\" : { \"value\": \"60a3a96a80a109005f5e78c2\" }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/Users","description":"<p>Create a user with many attributes</p>\n","urlObject":{"path":["Users"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"231a39f8-991e-469c-b4fc-3a3d8b69def1"},{"name":"Get user","event":[{"listen":"test","script":{"id":"e8b9e91c-2c87-4df5-99db-03eb48c1f663","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Id is requsted\", function () {","    var jsonData = pm.response.json();","        var id = pm.environment.get(\"id2\");","    pm.expect(jsonData.id).to.eql(id);","});"],"type":"text/javascript"}}],"id":"24c21b57-f4f3-4394-ad09-b43e55b67530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{ApiUrl}}/Users/{{id2}}","urlObject":{"path":["Users","{{id2}}"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"24c21b57-f4f3-4394-ad09-b43e55b67530"},{"name":"Update user","event":[{"listen":"test","script":{"id":"3aec73b3-4a3a-432f-90e9-02a8e781cffd","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"172e04b6-9822-40b3-986e-0278cd7a6d85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"UserName\": \"UserNameReplace2\",\r\n    \"Active\": true,\r\n    \"DisplayName\": \"BobIsAmazing\",\r\n    \"schemas\": [\r\n        \"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User\",\r\n        \"urn:ietf:params:scim:schemas:core:2.0:User\"\r\n    ],\r\n    \"id\": \"{{id2}}\",\r\n    \"externalId\": \"${__UUID}\",\r\n    \"name\": {\r\n        \"formatted\": \"NewName\",\r\n        \"familyName\": \"Leenay\",\r\n        \"givenName\": \"Ryan\"\r\n    },\r\n     \"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User\": {\r\n        \"Department\": \"bobbbbba\"\r\n     },\r\n    \"emails\": [\r\n        {\r\n            \"Primary\": true,\r\n            \"type\": \"work\",\r\n            \"value\": \"testing@bobREPLACE.com\"\r\n        },\r\n        {\r\n            \"Primary\": false,\r\n            \"type\": \"home\",\r\n            \"value\": \"testinghome@bob.com\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/Users/{{id2}}","urlObject":{"path":["Users","{{id2}}"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"172e04b6-9822-40b3-986e-0278cd7a6d85"},{"name":"Get User  with filters","event":[{"listen":"test","script":{"id":"dddb8cb5-6bbe-433b-b326-ef1ff00ae6ad","exec":["pm.test(\"Body contians id1\", function () {","        var id = pm.environment.get(\"id1\");","pm.expect(pm.response.text()).to.include(id);","});"],"type":"text/javascript"}}],"id":"d2237245-a2cd-4cb9-8b36-b0788533ec90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{ApiUrl}}/Users/?filter=DisplayName+eq+%22BobIsAmazing%22","urlObject":{"path":["Users",""],"host":["{{ApiUrl}}"],"query":[{"key":"filter","value":"DisplayName+eq+%22BobIsAmazing%22"}],"variable":[]}},"response":[],"_postman_id":"d2237245-a2cd-4cb9-8b36-b0788533ec90"},{"name":"Patch user","id":"3d5446fd-ba86-4eb9-a6d0-ac874e4ffd68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"schemas\": [\r\n        \"urn:ietf:params:scim:api:messages:2.0:PatchOp\"\r\n    ],\r\n    \"Operations\": [\r\n        {\r\n            \"op\": \"replace\",\r\n            \"path\": \"userName\",\r\n            \"value\": \"ryan3\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{ApiUrl}}/Users/{{id2}}","description":"<p>We strongly recommend to avoid using the PATCH request for updating user data via the SCIM API. While PATCH is supported for partial updates, the PUT request is typically sufficient for most use cases and aligns with standard update practices.</p>\n<p>By using PUT, you can ensure that all necessary attributes are consistently provided.</p>\n<p>For clarity and simplicity in implementation, we advise defaulting to PUT requests for user data updates.</p>\n","urlObject":{"path":["Users","{{id2}}"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d5446fd-ba86-4eb9-a6d0-ac874e4ffd68"},{"name":"Delete user2","event":[{"listen":"test","script":{"id":"9ad5160f-76ac-4b47-8c26-90a053cfeace","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});"],"type":"text/javascript"}}],"id":"c1f4dfdc-8a44-49ca-8796-b7062ea6f950","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{ApiUrl}}/Users/{{id2}}","urlObject":{"path":["Users","{{id2}}"],"host":["{{ApiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1f4dfdc-8a44-49ca-8796-b7062ea6f950"}],"id":"00e96681-a0d1-4ab9-81ec-a54beaa560a3","description":"<p>Juno integrates with the SCIM (System for Cross-domain Identity Management) protocol, reinforcing our commitment to providing comprehensive access and identity management. This section of the API documentation details our SCIM implementation, outlining how Juno utilizes this standardized method for automating user data synchronization across various systems.</p>\n<p>Our SCIM API provides a standardized way to provision and manage user identities in our cloud-based applications. SCIM API works to synchronize user data in a reliable, secure, and efficient manner.</p>\n<p>It's important to note that <strong>in most scenarios, there's no need to directly interact with the SCIM API</strong>. This is because Identity Providers (IdPs) are typically capable of synchronizing user data to Juno seamlessly using the SCIM protocol, automating the process for improved efficiency and accuracy.</p>\n<p><strong>Authentication</strong></p>\n<p>Similar to our other API endpoints, SCIM API also requires Bearer token authentication. Please ensure that you include the Bearer token in the Authorization header of each request. Any compromise of the Bearer token should be reported to our support team immediately.</p>\n<p><strong>Endpoints</strong></p>\n<p>The endpoint for the SCIM API is:</p>\n<p><code>https://scim.the-juno.com/api/v1/scim/v2/{your-account-id}</code></p>\n<p><strong>Your SCIM URL and your SCIM token are available in your Juno account, go to \"Admin\" -&gt; \"Security\" -&gt; \"Users sync\" tab.</strong></p>\n<p>Users Endpoint</p>\n<p>GET, POST, PUT, PATCH, and DELETE methods are supported on the Users endpoint, allowing you to list, create, update, and delete user identities, respectively.</p>\n<p>The Users endpoint adheres to the standard SCIM protocol, as defined in the SCIM specification (RFC7643 and RFC7644).</p>\n<p>Sample Requests:</p>\n<p>GET /Users: Retrieves a list of all users.</p>\n<p>POST /Users: Creates a new user.</p>\n<p>PUT /Users/{userId}: Updates an existing user.</p>\n<p>PATCH /Users/{userId}: Partially updates an existing user. (for most cases using the PUT request is sufficient)</p>\n<p>DELETE /Users/{userId}: Deactivates a user.</p>\n<p>Schema</p>\n<p>User resource types are defined based on the SCIM 2.0 User schema as per RFC7643.</p>\n<p>Here are a few common attributes:</p>\n<ul>\n<li>id: A unique identifier for the SCIM resource as defined by the Juno</li>\n<li>userName: A unique identifier for the User, typically used by the user to directly authenticate to Juno.</li>\n</ul>\n<p>Please refer to SCIM protocol's user endpoint schema for a detailed attribute list.</p>\n<p>Error Responses</p>\n<p>Error responses are also formatted as per the SCIM Protocol specification. Client-side errors like \"invalidFilter\", \"tooMany\", etc., and server-side errors like \"invalidSyntax\", \"invalidPath\", etc., are represented using SCIM's standard HTTP response status codes and \"error response\" SCIM schema.</p>\n<p>Please reach out to our support team for any issues or inquiries related to our SCIM API. We are more than happy to support you in ensuring a smooth and secure user management process in your applications.</p>\n<p>For your convenience, provided below are some illustrative examples to better elucidate how you can leverage the SCIM API in your interaction with our system.</p>\n","_postman_id":"00e96681-a0d1-4ab9-81ec-a54beaa560a3"},{"name":"xAPI","item":[{"name":"List XAPI Statements","id":"44bd19de-5860-4f13-a4d1-08253082ca46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"timestamp\": {\n            \"from\": \"2024-01-01\",\n            \"to\": \"2024-05-01\"\n        },\n        \"verb.id\": \"http://activitystrea.ms/schema/1.0/complete\",\n        \"object.id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n        \"userId\": \"64ae8d32cb525e00095e8b76\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search","description":"<h3 id=\"🚨-deprecation-notice-search-endpoint\">🚨 Deprecation Notice: <code>/.search</code> Endpoint</h3>\n<p>The <code>/.search</code> API endpoint will be <strong>deprecated on August 20, 2025</strong>.</p>\n<p>Starting <strong>August 20</strong>, the current <code>/.search</code> endpoint will adopt the <strong>behavior of the new</strong> <strong><code>/.search-cursor</code></strong> <strong>endpoint</strong>, which provides improved pagination and performance for querying xAPI statements.</p>\n<h3 id=\"🔁-whats-changing\">🔁 What's Changing?</h3>\n<ul>\n<li><p>The current <code>/.search</code> behavior will be <strong>replaced</strong> by the more efficient <code>/.search-cursor</code> implementation.</p>\n</li>\n<li><p>To <strong>future-proof your integration</strong>, we recommend switching <code>/.search-cursor</code> now.</p>\n</li>\n</ul>\n<h3 id=\"📄-new-route-documentation\">📄 New Route Documentation</h3>\n<p>You can find the documentation for the new <code>/.search-cursor</code> endpoint</p>\n<hr />\n<p>This API endpoint returns a list of xAPI statements based on the specified search criteria.</p>\n<p>Request Body:</p>\n<ul>\n<li><p>The request body should be in JSON format, and include the following properties:</p>\n<ul>\n<li><p><code>filters</code>: Optional. An object that represents the filter criteria for the search. Uses a subset of MongoDB's query language objects. Refer to the specific resource schema for the appropriate filter criteria. available filters are <code>timestamp</code>, <code>verb.id</code>, <code>object.id</code>, <code>userId</code></p>\n</li>\n<li><p><code>limit</code>: Optional. The maximum number of results to return. The default is 10 maximum 50.</p>\n</li>\n<li><p><code>skip</code>: Optional. The number of results to skip before returning. The default is 0.</p>\n</li>\n<li><p><code>sort</code>: Optional. An object that represents the sort criteria for the search. Uses a similar syntax as the MongoDB sort object. Refer to the specific resource schema for the appropriate sort criteria.</p>\n</li>\n<li><p><code>select</code>: Optional. An object that represents the projection criteria for the search. Uses a similar syntax as the MongoDB project object. Refer to the specific resource schema for the appropriate projection criteria.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Upon successful completion, this endpoint returns a JSON response with the following fields:</p>\n<ul>\n<li><p>data (array): An array of xAPI statements objects matching the specified search criteria.</p>\n</li>\n<li><p>dataLength (integer): The number of events objects returned in the \"data\" field.</p>\n</li>\n</ul>\n<p>description of the xAPI statements' fields are:</p>\n<ol>\n<li><p><strong>Actor</strong> (Required): This field identifies the individual or group that performed the action. It typically includes an identifier like an email or a unique ID, and possibly a name.</p>\n</li>\n<li><p><strong>Verb</strong> (Required): The verb describes the action taken by the actor. It includes an ID that points to a definition in a registry or ontology, providing a shared understanding of the action's meaning. Below you can find a table with a list of xAPI verbs.</p>\n</li>\n<li><p><strong>Object</strong> (Required): This field identifies the activity or object upon which the action, represented by the verb, is performed. It contains several subfields:</p>\n<ul>\n<li><p><strong>ID:</strong> A structured URL that uniquely identifies the activity, such as a course or learning module. Example: <code>\"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\"</code>, where <code>\"units\"</code> indicates the type of entity (training/content) and <code>64ae8fd6961516000949b5b4</code> is the unique identifier.<br />  <strong>Important Note on URLs:</strong> The IDs are structured as URLs to ensure uniqueness and structured referencing within the system. However, these URLs are not meant to be accessed directly via a web browser. Attempting to access these URLs directly will result in a 404 error because they do not correspond to actual web pages but serve as identifiers within the xAPI system.</p>\n</li>\n<li><p><strong>Definition:</strong> Provides additional metadata about the object:</p>\n<ul>\n<li><p><strong>Name:</strong> A JSON object representing the name of the activity in different languages.</p>\n</li>\n<li><p><strong>Type:</strong> A URI that defines the type of activity, such as <code>\"http://id.tincanapi.com/activitytype/goal\"</code>.</p>\n</li>\n<li><p><strong>Description:</strong> A JSON object providing a description of the activity, which could be empty (<code>{}</code>).</p>\n</li>\n<li><p><strong>InteractionType:</strong> Specifies the type of interaction, if applicable.</p>\n</li>\n<li><p><strong>Target:</strong> The ID of the user for whom the action is intended. This field is crucial for differentiating between the user who performs the action (Actor) and the user for whom the action is performed (Target). For example, in an assignment scenario, the actor would be the one assigning a task, while the target within the object would be the assignee.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>Result</strong> (Optional): Details the outcome of the action. This could include a score, success status, a response, or completion status.</p>\n</li>\n<li><p><strong>Context</strong> (Optional): Provides additional context for the experience, which might include other related activities, the instructor, or the location.</p>\n</li>\n</ol>\n<p>Table of different xAPI verbs:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Activity</th>\n<th>Verb ID</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>COMPLETED</td>\n<td><code>http://activitystrea.ms/schema/1.0/complete</code></td>\n<td>Represents the completion of a learning activity, applicable to both internal and external content types.</td>\n</tr>\n<tr>\n<td>INITIALIZED</td>\n<td><code>http://adlnet.gov/expapi/verbs/initialized</code></td>\n<td>Indicates the start of a learning activity, applicable to both internal and external content types.</td>\n</tr>\n<tr>\n<td>PASSED</td>\n<td><code>http://adlnet.gov/expapi/verbs/passed</code></td>\n<td>Occurs when a user passes a quiz, typically after the RATED event if the passing grade is achieved.</td>\n</tr>\n<tr>\n<td>CONSUMED</td>\n<td><code>http://activitystrea.ms/schema/1.0/consume</code></td>\n<td>Tracks the time spent on consuming content, used to measure learning duration.</td>\n</tr>\n<tr>\n<td>RATED</td>\n<td><code>http://id.tincanapi.com/verb/rated</code></td>\n<td>Triggers whenever a quiz score is updated, either upon submission or after grading changes.</td>\n</tr>\n<tr>\n<td>ATTENDED</td>\n<td><code>http://activitystrea.ms/schema/1.0/attend</code></td>\n<td>Logged when a user is marked as having attended an event or session.</td>\n</tr>\n<tr>\n<td>JOIN</td>\n<td><code>http://activitystrea.ms/schema/1.0/join</code></td>\n<td>Logged when a user joins a session.</td>\n</tr>\n<tr>\n<td>EARNED</td>\n<td><code>http://id.tincanapi.com/verb/earned</code></td>\n<td>Logged when a user earns a certification, either by completing a journey or adding a certification to their profile.</td>\n</tr>\n<tr>\n<td>SUBMIT</td>\n<td><code>http://activitystrea.ms/schema/1.0/submit</code></td>\n<td>Logged when a user submits a quiz.</td>\n</tr>\n<tr>\n<td>PURCHASE</td>\n<td><code>http://activitystrea.ms/schema/1.0/purchase</code></td>\n<td>Triggered when a purchase or transaction is completed, which may include internal, external, or support-initiated (e.g., gift card) purchases.</td>\n</tr>\n<tr>\n<td>ASSIGN</td>\n<td><code>http://activitystrea.ms/schema/1.0/assign</code></td>\n<td>Occurs when a user is assigned to an internal content or learning activity.</td>\n</tr>\n<tr>\n<td>REVIEWED</td>\n<td><code>http://id.tincanapi.com/verb/reviewed</code></td>\n<td>Logged when a user reviews a quiz for a learner.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","public-api","xapi",".search"],"host":["api-release","the-juno","com"],"query":[],"variable":[]}},"response":[{"id":"26e4f836-1678-465d-8fed-27a76016df0d","name":"List XAPI Statements filtered from date","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"timestamp\": {\n            \"from\": \"2024-01-01\",\n            \"to\": \"2024-05-01\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"d9b0-myzKM0FRCa2XC8fUzwB9B0nlcJ8\""},{"key":"vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 02 May 2024 14:17:48 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 50,\n    \"data\": [\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":10787}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:48:32.298Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8fa\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Get through your first day like a boss!\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:48:52.631Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":4660}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8fa\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Get through your first day like a boss!\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:48:56.674Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":9198}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8fc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"About us\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:49:05.835Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":11468}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Who's who?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:49:17.226Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":1676}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A Testimony to Our Commitment to Excellence\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:49:18.692Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/64ae8df51bd72d0008a2e9e9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/64ae8df51bd72d0008a2e9e9/64ae8df41bd72d0008a2e8d4\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/64ae8df51bd72d0008a2e9e9/64ae8df41bd72d0008a2e8d4/403525b19a8803e43b31e877\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:49:20.613Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"56ce3d60-5cfa-4bad-8dac-99c8567df3e9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":3861}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8d4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Setting up your workstation\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-02T13:49:23.203Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Barak Magen\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"barak@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"a700252c-40e5-4077-9881-e4b607e308da\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/duration\\\":0}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.edx.org/learn/computer-science/massachusetts-institute-of-technology-introduction-to-computer-science-and-programming-using-python\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"MITx: Introduction to Computer Science and Programming Using Python\\\"}\",\n                    \"type\": \"http://junojourney.com/activitytype/mooc\",\n                    \"description\": \"{\\\"en-US\\\":\\\"An introduction to computer science as a tool to solve real-world analytical problems using Python 3.5.\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-08T11:38:23.641Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d36d7ed8da0200090a857b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Barak Magen\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"barak@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"a700252c-40e5-4077-9881-e4b607e308da\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/duration\\\":0}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.edx.org/learn/computer-science/massachusetts-institute-of-technology-introduction-to-computer-science-and-programming-using-python\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"MITx: Introduction to Computer Science and Programming Using Python\\\"}\",\n                    \"type\": \"http://junojourney.com/activitytype/mooc\",\n                    \"description\": \"{\\\"en-US\\\":\\\"An introduction to computer science as a tool to solve real-world analytical problems using Python 3.5.\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-08T11:38:36.363Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d36d7ed8da0200090a857b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/659d63cd8fef19a841b650b5\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Business Strategy\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/goal\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"650072f3a3f97a000893374b\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T15:18:36.292Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/659d6b12b6aad6074eb88ed6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"do you want food?\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/survey\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"65783e74417a430009ec3f0c\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T15:51:00.380Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/659d6b12b6aad6074eb88ed6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"do you want food?\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/survey\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"64d38375ece62f0009cc785f\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T15:51:00.382Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"b684601e-c614-45c5-ba8c-e4cbbdceed9c\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"do you want food?\\\"},\\\"type\\\":\\\"http://id.tincanapi.com/activitytype/survey\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/659d6b12b6aad6074eb88ed6\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/659d6b12b6aad6074eb88ed6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"do you want food?\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/survey\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T16:06:48.862Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Laurie Spieler\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"laurie@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/659d7d387fcd3df74ee7c662\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"SQL\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/goal\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"64d3834fd8da0200090ad818\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T17:07:04.412Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d3834fd8da0200090ad818\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:24:59.980Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:25:20.085Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:25:39.981Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:25:59.982Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:26:20.055Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":8853}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8f8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:26:28.772Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8fa\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Get through your first day like a boss!\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:26:48.735Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Dave Stewart\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"davids@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"02e1a86b-9c82-4995-b850-de04bd700e14\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":11120}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8fa\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Get through your first day like a boss!\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-09T19:27:00.186Z\"\n            },\n            \"result\": null,\n            \"userId\": \"650072f3a3f97a000893374b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Barak Magen\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"barak@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"7c039ad9-05f8-463a-b431-87db9a6b93c3\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/duration\\\":16200000}\"\n            },\n            \"object\": {\n                \"id\": \"https://udemy.com/course/give-a-dazzling-keynote-presentation/\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Public Speaking and Presentations Pro: No Beginners Allowed!\\\"}\",\n                    \"type\": \"http://junojourney.com/activitytype/mooc\",\n                    \"description\": \"{\\\"en-US\\\":\\\"Learn the public speaking secrets to giving a master presentation, techniques most speakers have never even heard of.\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-11T11:54:49.332Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d36d7ed8da0200090a857b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Barak Magen\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"barak@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"7c039ad9-05f8-463a-b431-87db9a6b93c3\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/duration\\\":16200000}\"\n            },\n            \"object\": {\n                \"id\": \"https://udemy.com/course/give-a-dazzling-keynote-presentation/\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Public Speaking and Presentations Pro: No Beginners Allowed!\\\"}\",\n                    \"type\": \"http://junojourney.com/activitytype/mooc\",\n                    \"description\": \"{\\\"en-US\\\":\\\"Learn the public speaking secrets to giving a master presentation, techniques most speakers have never even heard of.\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-11T11:54:52.900Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d36d7ed8da0200090a857b\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"65ef5933-962b-466d-9e22-1824e047dcdc\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"do you want food?\\\"},\\\"type\\\":\\\"http://id.tincanapi.com/activitytype/survey\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"food?\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61/659d6b126c4fc1b66532cb76\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T01:11:28.122Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"65ef5933-962b-466d-9e22-1824e047dcdc\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"do you want food?\\\"},\\\"type\\\":\\\"http://id.tincanapi.com/activitytype/survey\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"food?\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61/eeea487d6c4fc1b66532cb79\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T01:11:28.129Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"65ef5933-962b-466d-9e22-1824e047dcdc\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"do you want food?\\\"},\\\"type\\\":\\\"http://id.tincanapi.com/activitytype/survey\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"food?\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61/659d6b126c4fc1b66532cb77\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T01:11:28.156Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"65ef5933-962b-466d-9e22-1824e047dcdc\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"do you want food?\\\"},\\\"type\\\":\\\"http://id.tincanapi.com/activitytype/survey\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"food?\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/659d6b12b6aad6074eb88ed6/659d6b12259355f9d6e79b61/659d6b126c4fc1b66532cb78\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T01:11:28.230Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"65ef5933-962b-466d-9e22-1824e047dcdc\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"do you want food?\\\"},\\\"type\\\":\\\"http://id.tincanapi.com/activitytype/survey\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/659d6b12b6aad6074eb88ed6\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/659d6b12b6aad6074eb88ed6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"do you want food?\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/survey\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T01:11:31.436Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Emily Chang\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner36@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"38201845-336c-4c6b-aa98-462517d29b8a\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"New Joiners Breakfast\\\"},\\\"type\\\":\\\"http://junojourney.com/activitytype/workshop\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae9144c935220009c4027b\\\"}]\",\n                    \"parent\": \"{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"New Joiners Breakfast\\\"},\\\"type\\\":\\\"http://junojourney.com/activitytype/workshop\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae9144c935220009c4027b\\\"}\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/createdTimestamp\\\":\\\"2024-04-17T09:22:48.040Z\\\",\\\"https://www.junojourney.com/activity/duration\\\":3600000,\\\"https://www.junojourney.com/event/session/end\\\":1705309200000,\\\"https://www.junojourney.com/event/session/start\\\":1705305600000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/session/64ae9145f87e180009052e7f\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"January Breakfast\\\"}\",\n                    \"type\": \"http://junojourney.com/activitytype/workshop\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/attend\",\n                \"display\": \"{\\\"en-US\\\":\\\"attend\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T08:00:00.000Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f6719e2380009eb1cf1\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Valerie Villa\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner24@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"38201845-336c-4c6b-aa98-462517d29b8a\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"New Joiners Breakfast\\\"},\\\"type\\\":\\\"http://junojourney.com/activitytype/workshop\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae9144c935220009c4027b\\\"}]\",\n                    \"parent\": \"{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"New Joiners Breakfast\\\"},\\\"type\\\":\\\"http://junojourney.com/activitytype/workshop\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae9144c935220009c4027b\\\"}\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/createdTimestamp\\\":\\\"2024-04-17T09:22:36.020Z\\\",\\\"https://www.junojourney.com/activity/duration\\\":3600000,\\\"https://www.junojourney.com/event/session/end\\\":1705309200000,\\\"https://www.junojourney.com/event/session/start\\\":1705305600000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/session/64ae9145f87e180009052e7f\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"January Breakfast\\\"}\",\n                    \"type\": \"http://junojourney.com/activitytype/workshop\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/attend\",\n                \"display\": \"{\\\"en-US\\\":\\\"attend\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-15T08:00:00.000Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f6719e2380009eb1cea\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/650961ea32aea40008fac850\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"SDR Onboarding \\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/process\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:50:55.277Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/650961eb32aea40008fac9d3\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:50:57.642Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/650961eb32aea40008fac9d3\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/650961eb32aea40008fac923\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:50:58.160Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961eb32aea40008fac923\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961eb32aea40008fac923/650961eb32aea40008fac956\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:50:58.182Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/650961eb32aea40008fac9d3\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":4327}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/650961eb32aea40008fac923\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.285Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8ea\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.732Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8eb\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.742Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8ec\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"\",\n                    \"description\": \"{}\",\n                    \"interactionType\": \"\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://id.tincanapi.com/verb/viewed\",\n                \"display\": \"{\\\"en-US\\\":\\\"viewed\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.864Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8ed\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.866Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8ee\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.875Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f1\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.890Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f0\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.891Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f2\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.892Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8ef\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"\",\n                    \"description\": \"{}\",\n                    \"interactionType\": \"\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://id.tincanapi.com/verb/viewed\",\n                \"display\": \"{\\\"en-US\\\":\\\"viewed\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.904Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f5\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.909Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f6\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"\",\n                    \"description\": \"{}\",\n                    \"interactionType\": \"\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://id.tincanapi.com/verb/viewed\",\n                \"display\": \"{\\\"en-US\\\":\\\"viewed\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.912Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f7\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.917Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Tomas Middleton\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner11@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"e9a4babc-15cf-4d38-bd3e-36495eed9570\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"About us\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/650961eb32aea40008fac9d3/650961ea32aea40008fac8c2/650961eb32aea40008fac8f3\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T13:51:02.929Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f0\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        }\n    ]\n}"},{"id":"f571c9f1-9f20-4a0b-b280-bb1184408dfa","name":"List XAPI Statements filtered by event type (verb.id)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"verb.id\": \"http://activitystrea.ms/schema/1.0/complete\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"db9e-e9Q64QoeaFSjGQwi+B9Mfsf0PfE\""},{"key":"vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 02 May 2024 14:29:23 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 50,\n    \"data\": [\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:44.879Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What makes a good leader?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:50.003Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5bc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:23.459Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5be\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A closer look at leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:37.202Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Goleman's six  leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:39.669Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\" Different follower types\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:55.412Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What do followers need?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:59.466Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Course learning outcomes\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T12:25:44.661Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Defining leadership\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:13.590Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Build your leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:57.807Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5ce\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Keep a leadership journal\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:16.757Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Review your own leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:18.545Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Building an effective team \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:02.905Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Team building exercises\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:06.012Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Dealing with internal politics\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:12.752Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5de\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:25.702Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Advice for Leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:36.540Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"The future of leadership \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:17.832Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Bonus courses\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:19.436Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Introduction \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:18.566Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:39.697Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6da\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:50.135Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6db\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Build your leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:16.809Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:36.656Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\" Different follower types\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:59.495Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6de\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Building an effective team\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:12.786Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6df\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"The future of leadership  \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:19.476Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/journey/steps\\\":[\\\"64ae8fd7961516000949b6d8\\\",\\\"64ae8fd7961516000949b6d9\\\",\\\"64ae8fd7961516000949b6da\\\",\\\"64ae8fd7961516000949b6db\\\",\\\"64ae8fd7961516000949b6dc\\\",\\\"64ae8fd7961516000949b6dd\\\",\\\"64ae8fd7961516000949b6de\\\",\\\"64ae8fd7961516000949b6df\\\"]}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6e5\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Intro To Leadership 101\\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/process\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:19.745Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Untitled\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/65d345197360b1b8825f1018\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Untitled\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/65d345197360b1b8825f1018\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65d3451941af446ac68cf20a\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Section #1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T12:26:39.695Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Richard Woolf\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"richard@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Untitled\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/65d345197360b1b8825f1018\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65d345197360b1b8825f1018\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Untitled\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T12:26:39.779Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64d38375ece62f0009cc785f\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Laurie Spieler\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"laurie@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/661fbf41a892b5608ed0fc2a\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/661fbf41a892b5608ed0fc2a\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/661fbf40a892b5608ed0fb7e\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome to the company\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-17T12:23:57.329Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d3834fd8da0200090ad818\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Anonymous User\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"661e827e55631a924e938cc4@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Security & Data Protection\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8e5df87e180009051f37\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Security & Data Protection\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8e5df87e180009051f37\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8e5df87e180009051ec3\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Welcome\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-16T13:52:01.669Z\"\n            },\n            \"result\": null,\n            \"userId\": \"661e827e55631a924e938cc4\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"dan hagedoorn\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"66227bd25ba0bc0d1614bc9e@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Accordion & Juno Journey \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/662135690e27f09834fedd39\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Accordion & Juno Journey \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/662135690e27f09834fedd39\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/662135690e27f09834fedc6c\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"1. Juno Journey's Holistic Solution\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-19T14:12:59.432Z\"\n            },\n            \"result\": null,\n            \"userId\": \"66227bd25ba0bc0d1614bc9e\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"dan hagedoorn\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"6622ba63efe92ad2553a3b90@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Accordion & Juno Journey \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/662135690e27f09834fedd39\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Accordion & Juno Journey \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/662135690e27f09834fedd39\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/662135690e27f09834fedc6e\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"2. Our recorded demo\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-19T18:39:49.433Z\"\n            },\n            \"result\": null,\n            \"userId\": \"6622ba63efe92ad2553a3b90\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"dan hagedoorn\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"66227bd25ba0bc0d1614bc9e@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Accordion & Juno Journey \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/662135690e27f09834fedd39\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Accordion & Juno Journey \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/662135690e27f09834fedd39\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/662135690e27f09834fedcf0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"11. Our pricing\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-19T14:13:31.580Z\"\n            },\n            \"result\": null,\n            \"userId\": \"66227bd25ba0bc0d1614bc9e\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/duration\\\":\\\"N/A\\\"}\"\n            },\n            \"object\": {\n                \"id\": \"http://www.blogtalkradio.com/steve-boese/2018/05/10/hr-happy-hour--oracle-spotlight--episode-2-innovation-in-hcm-technology\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"HR Happy Hour - Oracle Spotlight - Episode 2: Innovation in HCM Technology\\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/audio\",\n                    \"description\": \"{\\\"en-US\\\":\\\"HR Happy Hour - Oracle Spotlight - Episode 2: Innovation in HCM Technology\\\\n\\\\nHosts: Steve Boese, Trish McFarlane\\\\n\\\\nGuest: Gretchen Alarcon, Group Vice President, Product Strategy, Oracle\\\\n\\\\nThis week on the HR Happy Hour Show, hosts Steve Boese and Trish McFarlane continue a special series of podcasts with our friends at Oracle HCM. On Episode 2, we are joined by Gretchen Alarcon from Oracle to talk about innovation in HCM technology, and how HR leaders can best position themselves and their organizations to take advantage of these innovations. On the show, we talk the importance and impact of migrating HCM solutions to the cloud, the emerging influence of AI and machine learning in HCM technology and what that means for HR, and how user focus and user experience are driving much of the most exciting innovations in HCM technology.\\\\n\\\\nThis was a really interesting conversation and one we will build on in upcoming episodes of the Oracle Spotlight series.\\\\n\\\\nThanks to Gretchen for joining us and thanks to our friends at Oracle HCM for making this series happen.\\\\n\\\\nSubscribe to the HR Happy Hour Show on Apple Podcasts, Stitcher Radio, or wherever you get your podcasts - just search for 'HR Happy Hour'.\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-08-09T10:24:31.458Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Cassius Dyer\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd1@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"d6309903-0b53-4c86-9db3-490f13135263\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/duration\\\":0}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.amazon.com/Customer-Success-Professionals-Handbook-Careers_While/dp/1119624614\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"The Customer Success Professional's Handbook: How to Thrive in One of the World's Fastest Growing Careers--While Driving Growth For Your Company\\\"}\",\n                    \"type\": \"http://id.tincanapi.com/activitytype/book\",\n                    \"description\": \"{\\\"en-US\\\":\\\"The Customer Success Professional's Handbook: How to Thrive in One of the World's Fastest Growing Careers-While Driving Growth For Your Company [Vaidyanathan, Ashvin, Rabago, Ruben] on Amazon.com. *FREE* shipping on qualifying offers. The Customer Success Professional's Handbook: How ...\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-20T10:13:35.019Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c700\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Cassius Dyer\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd1@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"d6309903-0b53-4c86-9db3-490f13135263\",\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/internalContent/64d36535748d7300098e1af1\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"New deployment guidelines\\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/task\",\n                    \"description\": \"{\\\"en-US\\\":\\\"<p><span style=\\\\\\\"font-size:20px\\\\\\\">Please prepare a quick presentation on how to apply the new deployment procedures to the new customers</span></p>\\\\n\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-20T10:12:09.240Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c700\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Cassius Dyer\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd1@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"d6309903-0b53-4c86-9db3-490f13135263\",\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/internalContent/64d36694c142280009ba0b57\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Prepare a presentation \\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/task\",\n                    \"description\": \"{\\\"en-US\\\":\\\"<p><span style=\\\\\\\"font-size:20px\\\\\\\">Prepare a presentation to show what you've learned and how to properly manage a project.  Address the following topics:</span></p>\\\\n<p style=\\\\\\\"text-align:start\\\\\\\"><span style=\\\\\\\"color:rgb(55,65,81);background-color:rgb(247,247,248);font-size:16px;font-family:Söhne, ui-sans-serif, system-ui, -apple-system,\\\\\\\">What is the primary goal of project management?</span></p>\\\\n<p><span style=\\\\\\\"color:rgb(55,65,81);background-color:rgb(247,247,248);font-size:16px;font-family:Söhne, ui-sans-serif, system-ui, -apple-system,\\\\\\\">What does the acronym \\\\\\\"SMART\\\\\\\" stand for in the context of project objectives?<br />What document outlines the project's purpose, scope, objectives, and participants?<br /></span></p>\\\\n\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-20T10:12:03.517Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c700\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Who's who?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T09:35:26.512Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Allan Hoover\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd4@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Who's who?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:21:02.879Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c703\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Cassius Dyer\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd1@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Who's who?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T14:38:40.235Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c700\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Jaydon English\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd2@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Who's who?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:09:28.922Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c701\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A Testimony to Our Commitment to Excellence\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T09:35:33.421Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Cassius Dyer\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd1@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A Testimony to Our Commitment to Excellence\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T14:38:41.798Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c700\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Allan Hoover\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd4@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A Testimony to Our Commitment to Excellence\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:21:04.247Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c703\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Jaydon English\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd2@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Welcome to the company\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e7\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A Testimony to Our Commitment to Excellence\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:09:33.160Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c701\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8d4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Setting up your workstation\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T09:35:33.730Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Cassius Dyer\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd1@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8d4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Setting up your workstation\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T14:38:44.052Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c700\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Allan Hoover\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd4@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Setting up your workstation\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8df51bd72d0008a2e9e9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8df41bd72d0008a2e8d4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Setting up your workstation\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:21:06.460Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c703\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        }\n    ]\n}"},{"id":"07159bb5-b0f0-48db-b0e0-43fadf7c5fa9","name":"List XAPI Statements filter by specific training (object.id)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"object.id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"4090-27MrOOUfBbsWOFl4TEQhA66bY7Y\""},{"key":"vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 02 May 2024 14:31:54 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 14,\n    \"data\": [\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:44.879Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"1164449a-393a-4b30-8dce-7a8e02eb6c8a\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":4827}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:48.594Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Jaydon English\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd2@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:11:48.037Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c701\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Anisha Sears\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd3@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-21T16:55:53.260Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c702\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Jaydon English\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd2@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"dceeb43e-8e33-4339-aca9-df7b44fab4b1\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":2355}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T17:11:50.155Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c701\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Anisha Sears\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd3@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"4e98e01b-e5ed-41e5-b6e8-92dc1ab24e80\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":2100}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-21T16:55:55.139Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c702\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Ellen Morrow\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd9@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T13:12:00.661Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c708\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Ruby Roberson\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner23@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T15:04:20.031Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f2\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Emily Chang\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner36@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T15:17:25.736Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f6719e2380009eb1cf1\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Kiran Fleming\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd10@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T13:45:54.580Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c709\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Kiran Fleming\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd10@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"56249838-2bb4-4f03-9605-d2d68b52b746\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":1927}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T13:45:56.249Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c709\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Emily Chang\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner36@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"c1d156be-d4f4-45d8-ae61-ac1607ac2f93\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":1874}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T15:17:26.993Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f6719e2380009eb1cf1\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Ruby Roberson\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"learner23@thejuno.io\"\n            },\n            \"context\": {\n                \"registration\": \"cda69826-8c49-4342-91a0-fe494361a1f9\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":2138}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-01-16T15:04:21.582Z\"\n            },\n            \"result\": null,\n            \"userId\": \"65018f67763f7c0009e247f2\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Ellen Morrow\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"sd9@junojourney.com\"\n            },\n            \"context\": {\n                \"registration\": \"d4517d35-a7c3-47c1-9eeb-5dce8a3fee98\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":10387}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2023-09-19T13:12:10.869Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64d249b338784b0009e0c708\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        }\n    ]\n}"},{"id":"de911975-596d-4237-be8b-8aa98e44c6a3","name":"List XAPI Statements filtered by specific user","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"userId\":\"64ae8d32cb525e00095e8b76\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"c3b9-OX90B5nvBwpTf0Z4rJSyw4eCIWQ\""},{"key":"vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 02 May 2024 14:36:19 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 50,\n    \"data\": [\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/journey/steps\\\":[\\\"64ae8fd7961516000949b6d8\\\",\\\"64ae8fd7961516000949b6d9\\\",\\\"64ae8fd7961516000949b6da\\\",\\\"64ae8fd7961516000949b6db\\\",\\\"64ae8fd7961516000949b6dc\\\",\\\"64ae8fd7961516000949b6dd\\\",\\\"64ae8fd7961516000949b6de\\\",\\\"64ae8fd7961516000949b6df\\\"]}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6e5\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Intro To Leadership 101\\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/process\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"65018f67763f7c0009e247ee\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-09T11:23:13.096Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/journey/steps\\\":[\\\"64ae8fd7961516000949b6d8\\\",\\\"64ae8fd7961516000949b6d9\\\",\\\"64ae8fd7961516000949b6da\\\",\\\"64ae8fd7961516000949b6db\\\",\\\"64ae8fd7961516000949b6dc\\\",\\\"64ae8fd7961516000949b6dd\\\",\\\"64ae8fd7961516000949b6de\\\",\\\"64ae8fd7961516000949b6df\\\"]}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6e5\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Intro To Leadership 101\\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/process\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"65018f67763f7c0009e247ee\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-17T12:08:58.262Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/journey/steps\\\":[\\\"6500313bbdf65f0009176fbe\\\",\\\"6500313bbdf65f0009176fbf\\\",\\\"6500313bbdf65f0009176fc0\\\",\\\"6500313bbdf65f0009176fc1\\\",\\\"6500313bbdf65f0009176fc2\\\",\\\"6500313bbdf65f0009176fc3\\\"]}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/6500313abdf65f0009176e6d\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Team Building Training \\\"}\",\n                    \"type\": \"http://activitystrea.ms/schema/1.0/process\",\n                    \"description\": \"{\\\"en-US\\\":\\\"Give your team the tools to work better together and turn your office into a happy place.\\\"}\",\n                    \"interactionType\": null,\n                    \"target\": \"65018f67763f7c0009e247ee\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-19T09:15:18.328Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"123ad5af-738b-4991-b275-0b41c2d30a78\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":2914}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"The future of leadership \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-16T12:47:17.244Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/6501bc6fcf363d000990291a\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Management personal development plan\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": \"65fc68b27096f4b10ab6798e\"\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/assign\",\n                \"display\": \"{\\\"en-US\\\":\\\"assign\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T17:13:09.619Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"c93a96ec-1c2a-40a8-b37a-3a0897f2044e\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d/65e8674a1ba6675ce4177fb4\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d/65e8674a1ba6675ce4177fb4/13d424eab4cbe6f23b8b0c31\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"\",\n                    \"description\": \"{\\\"en-US\\\":\\\"test\\\"}\",\n                    \"interactionType\": \"\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://id.tincanapi.com/verb/viewed\",\n                \"display\": \"{\\\"en-US\\\":\\\"viewed\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-06T12:54:39.973Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"c93a96ec-1c2a-40a8-b37a-3a0897f2044e\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d/65e8674a1ba6675ce4177fb4\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d/65e8674a1ba6675ce4177fb4/65e8674a1ba6675ce4177fb6\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-06T12:54:40.224Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"c93a96ec-1c2a-40a8-b37a-3a0897f2044e\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/module\\\"},\\\"id\\\":\\\"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d/65e8674a1ba6675ce4177fb4\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/courses/65e867534c8b651dc8e6871d/65e8674a1ba6675ce4177fb4/65e86775b4cbe6f23b8b0c32\",\n                \"definition\": {\n                    \"name\": null,\n                    \"type\": \"http://www.risc-inc.com/annotator/activities/freetext\",\n                    \"description\": \"{\\\"en-US\\\":\\\"text\\\"}\",\n                    \"interactionType\": \"view\",\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/read\",\n                \"display\": \"{\\\"en-US\\\":\\\"read\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-06T12:54:40.148Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"c93a96ec-1c2a-40a8-b37a-3a0897f2044e\",\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/65e867534c8b651dc8e6871d\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"test\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/65e867534c8b651dc8e6871d\\\"}]\"\n                },\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":3126}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65e8674a1ba6675ce4177fb4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-06T12:54:42.831Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":5120}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:32:11.989Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:37:13.516Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":19990}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:35:53.473Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:36:53.481Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:37:33.457Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:38:03.179Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20000}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:35:33.466Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":10360}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:38:28.784Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":20010}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:36:13.877Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": \"eebc7618-5fd9-4c2e-b1b4-4d867c54dfc1\",\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/verbs/duration\\\":19990}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/65fc52df14073e90f69bb778\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"test1\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/cmi.interaction\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/consume\",\n                \"display\": \"{\\\"en-US\\\":\\\"consume\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-03-21T15:36:33.448Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": null,\n                \"extensions\": \"{\\\"https://www.junojourney.com/activity/createdTimestamp\\\":\\\"2024-04-03T11:51:19.769Z\\\"}\"\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/certificate/660d42b79c9869a1e581478a\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Intro To Leadership 101\\\"}\",\n                    \"type\": \"https://www.opigno.org/en/tincan_registry/activity_type/certificate\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://id.tincanapi.com/verb/earned\",\n                \"display\": \"{\\\"en-US\\\":\\\"earned\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:19.767Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:44.879Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What makes a good leader?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:50.003Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5bc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:23.459Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5be\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"A closer look at leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:37.202Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Goleman's six  leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:39.669Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\" Different follower types\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:55.412Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5c4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What do followers need?\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:59.466Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5ca\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Defining leadership\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:13.590Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5cc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Build your leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:57.807Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5ce\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Keep a leadership journal\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:16.757Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Review your own leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:18.545Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Building an effective team \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:02.905Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Team building exercises\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:06.012Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5d6\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Dealing with internal politics\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:12.752Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5de\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:25.702Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e0\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Advice for Leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:36.540Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e2\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"The future of leadership \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:17.832Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"The future of leadership  \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6df\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5e4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Bonus courses\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:19.436Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Introduction \\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6d8\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Introduction \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:18.566Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:20.233Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Leadership styles\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6d9\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Leadership styles\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:39.697Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6da\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:50.135Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6da\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:41.933Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6db\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Build your leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:52.863Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Build your leadership experience\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6db\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6db\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Build your leadership experience\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:16.809Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:18.681Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6dc\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Challenges for modern leaders\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:36.656Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\" Different follower types\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:39.943Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\" Different follower types\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6dd\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\" Different follower types\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:50:59.495Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        },\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Building an effective team\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6de\\\"}]\",\n                    \"parent\": null\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd7961516000949b6de\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"Building an effective team\\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/course\",\n                    \"description\": \"{}\",\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://adlnet.gov/expapi/verbs/initialized\",\n                \"display\": \"{\\\"en-US\\\":\\\"initialized\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:51:01.898Z\"\n            },\n            \"result\": {\n                \"success\": null,\n                \"response\": null,\n                \"extensions\": null\n            },\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        }\n    ]\n}"},{"id":"6a53d88d-4221-40b2-bb18-b755c681fc2a","name":"List XAPI Statements all filters (user, date, verb id, training)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"timestamp\": {\n            \"from\": \"2024-01-01\"\n        },\n        \"verb.id\": \"http://activitystrea.ms/schema/1.0/complete\",\n        \"object.id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n        \"userId\": \"64ae8d32cb525e00095e8b76\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"491-94E9eRmRQWvr8UCmmIsTP9vYAds\""},{"key":"vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 02 May 2024 14:40:23 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 1,\n    \"data\": [\n        {\n            \"actor\": {\n                \"name\": \"Juno Journey\",\n                \"account\": {\n                    \"homePage\": \"https://sales-demo.the-juno.com\"\n                },\n                \"mbox\": \"juno.sales-demo@the-juno.com\"\n            },\n            \"context\": {\n                \"registration\": null,\n                \"contextActivities\": {\n                    \"grouping\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\",\n                    \"parent\": \"[{\\\"definition\\\":{\\\"description\\\":{},\\\"name\\\":{\\\"en-US\\\":\\\"Good Leaders vs Bad Leaders\\\"},\\\"type\\\":\\\"http://adlnet.gov/expapi/activities/course\\\"},\\\"id\\\":\\\"https://www.junojourney.com/units/64ae8fd7961516000949b6da\\\"}]\"\n                },\n                \"extensions\": null\n            },\n            \"object\": {\n                \"id\": \"https://www.junojourney.com/units/64ae8fd6961516000949b5b4\",\n                \"definition\": {\n                    \"name\": \"{\\\"en-US\\\":\\\"What is poor leadership? \\\"}\",\n                    \"type\": \"http://adlnet.gov/expapi/activities/module\",\n                    \"description\": null,\n                    \"interactionType\": null,\n                    \"target\": null\n                }\n            },\n            \"verb\": {\n                \"id\": \"http://activitystrea.ms/schema/1.0/complete\",\n                \"display\": \"{\\\"en-US\\\":\\\"complete\\\"}\"\n            },\n            \"timestamp\": {\n                \"value\": \"2024-04-03T11:49:44.879Z\"\n            },\n            \"result\": null,\n            \"userId\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\"\n        }\n    ]\n}"}],"_postman_id":"44bd19de-5860-4f13-a4d1-08253082ca46"},{"name":"List XAPI Statements (v2)","id":"17821845-4a97-4fc8-8209-b105d16c6ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.search-cursor","description":"<h2 id=\"🔍-list-xapi-statements-v2\">🔍 <strong>List XAPI Statements (v2)</strong></h2>\n<p><strong>Endpoint:</strong><br /><code>POST https://api-release.the-juno.com/api/v1/public-api/xapi/.search-cursor</code></p>\n<h3 id=\"🔹-description\">🔹 Description</h3>\n<p>Performs a <strong>cursor-based search</strong> over xAPI statements with customizable filters, pagination, and field selection.</p>\n<hr />\n<h3 id=\"📝-request-body\">📝 <strong>Request Body</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>jsonCopyEdit{\n  \"filters\": {\n    \"timestamp\": { \"$gte\": \"2024-01-01T00:00:00Z\" },\n    \"verb.id\": \"string\",\n    \"object.id\": \"string\",\n    \"userId\": \"string\"\n  },\n  \"limit\": 500,\n  \"cursor\": \"string\",\n  \"select\": {\n    \"actor\": 1,\n    \"verb\": 1,\n    \"timestamp\": 1\n  }\n}\n\n</code></pre><h3 id=\"📌-properties\">📌 Properties</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>filters</code></td>\n<td>object</td>\n<td>No</td>\n<td>MongoDB-style filters (<code>timestamp</code>, <code>verb.id</code>, <code>object.id</code>, <code>userId</code>)</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>number</td>\n<td>No</td>\n<td>Max number of results. <strong>Supported, max value = 1000</strong></td>\n</tr>\n<tr>\n<td><code>cursor</code></td>\n<td>string</td>\n<td>No</td>\n<td>Cursor from previous request (omit on first request)</td>\n</tr>\n<tr>\n<td><code>sort</code></td>\n<td>object</td>\n<td>❌ Not supported</td>\n<td>Ignored if provided — statements are returned by default timestamp order</td>\n</tr>\n<tr>\n<td><code>select</code></td>\n<td>object</td>\n<td>No</td>\n<td>Mongo-style projection fields to return</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"📦-response\">📦 <strong>Response</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"data\": [ /* xAPI statement objects */ ],\n  \"cursor\": \"string\"\n}\n\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>data</code></td>\n<td>array</td>\n<td>List of xAPI statements in the current page</td>\n</tr>\n<tr>\n<td><code>cursor</code></td>\n<td>string</td>\n<td>Cursor to retrieve the next page (undefined if finished)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"🔁-pagination-notes\">🔁 <strong>Pagination Notes</strong></h3>\n<ul>\n<li><p>Omit <code>cursor</code> on first request</p>\n</li>\n<li><p>Use <code>cursor</code> from previous response to continue</p>\n</li>\n<li><p><strong>Statements are returned in timestamp order by default</strong></p>\n</li>\n<li><p>✅ <strong>Limit is supported (max 1000)</strong></p>\n</li>\n<li><p>❌ <strong>Sort is not supported and will be ignored</strong></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","public-api","xapi",".search-cursor"],"host":["api-release","the-juno","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"17821845-4a97-4fc8-8209-b105d16c6ccd"},{"name":"Scan Xapi statements","id":"f15d9fcd-f825-4e47-a558-d8def58ef784","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api-release.the-juno.com/api/v1/public-api/xapi/.scan","description":"<h2 id=\"🛠-scan-xapi-statements\">🛠 <strong>Scan XAPI Statements</strong></h2>\n<p><strong>Endpoint:</strong><br /><code>POST https://api-release.the-juno.com/api/v1/public-api/xapi/.scan</code></p>\n<h3 id=\"🔹-description\">🔹 Description</h3>\n<p>Scans all xAPI statements using cursor-based pagination, <strong>ideal for large-scale exports or BI tasks</strong>.</p>\n<hr />\n<h3 id=\"📝-request-body\">📝 <strong>Request Body</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"filters\": {\n    \"verb.id\": \"string\",\n    \"object.id\": \"string\",\n    \"userId\": \"string\"\n  },\n  \"cursor\": \"string\",\n  \"select\": {\n    \"actor\": 1,\n    \"verb\": 1,\n    \"timestamp\": 1\n  }\n}\n\n</code></pre>\n<h3 id=\"📌-properties\">📌 Properties</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>filters</code></td>\n<td>object</td>\n<td>No</td>\n<td>Filtering (no support for timestamp)</td>\n</tr>\n<tr>\n<td><code>cursor</code></td>\n<td>string</td>\n<td>No</td>\n<td>Cursor from previous scan (omit to start)</td>\n</tr>\n<tr>\n<td><code>select</code></td>\n<td>object</td>\n<td>No</td>\n<td>Projection fields</td>\n</tr>\n<tr>\n<td><code>sort</code></td>\n<td>object</td>\n<td>❌ Not supported</td>\n<td>(Previously allowed, now deprecated — ignored if present)</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n</blockquote>\n<p>❗ <strong>timestamp filtering is NOT supported.</strong>  </p>\n<p>❗ <strong>limit is NOT supported</strong> — default chunk size is <strong>5000</strong></p>\n<hr />\n<h3 id=\"📦-response\">📦 <strong>Response</strong></h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": [ /* xAPI statement objects */ ],\n  \"dataLength\": 5000,\n  \"cursor\": \"string\",\n  \"isDone\": false\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>data</code></td>\n<td>array</td>\n<td>Data chunk</td>\n</tr>\n<tr>\n<td><code>dataLength</code></td>\n<td>number</td>\n<td>Size of current chunk (default = 5000)</td>\n</tr>\n<tr>\n<td><code>cursor</code></td>\n<td>string</td>\n<td>Cursor for next chunk</td>\n</tr>\n<tr>\n<td><code>isDone</code></td>\n<td>boolean</td>\n<td>True if all data has been scanned</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"🔁-pagination-notes\">🔁 <strong>Pagination Notes</strong></h3>\n<ul>\n<li><p>Start with empty <code>cursor</code></p>\n</li>\n<li><p>Continue with provided <code>cursor</code> until <code>isDone: true</code></p>\n</li>\n<li><p><strong>Chunk size is 5000</strong></p>\n</li>\n<li><p><strong>No support for</strong> <strong><code>limit</code></strong> <strong>or</strong> <strong><code>sort</code></strong></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","public-api","xapi",".scan"],"host":["api-release","the-juno","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f15d9fcd-f825-4e47-a558-d8def58ef784"}],"id":"9a8971a3-40f1-4e6d-bad9-b0903882f90f","description":"<p><strong>Introduction to xAPI (Experience API):</strong></p>\n<p>The Experience API (xAPI) facilitates the recording and tracking of all types of learning experiences by storing them as xAPI statements in a Learning Record Store (LRS). These statements capture detailed and structured records of learning activities, providing a comprehensive and interoperable framework for documenting learning activities events/progress.</p>\n","_postman_id":"9a8971a3-40f1-4e6d-bad9-b0903882f90f"},{"name":"Units /Training","item":[{"name":"List Units (Preview)","id":"9023a6b6-9f87-42b9-b717-644981a83026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/units/.search","description":"<p>This API endpoint returns a list of training units based on the specified search criteria.</p>\n<h4 id=\"request-body\">Request Body:</h4>\n<p>The request body should be in JSON format and include the following properties:</p>\n<ul>\n<li><p><strong>filters</strong>: Optional. An object that represents the filter criteria for the search. Uses a subset of MongoDB's query language objects. Refer to the specific resource schema for the appropriate filter criteria.</p>\n</li>\n<li><p><strong>limit</strong>: Optional. The maximum number of results to return. Default is 10, maximum is 50.</p>\n</li>\n<li><p><strong>skip</strong>: Optional. The number of results to skip before returning. Default is 0.</p>\n</li>\n<li><p><strong>sort</strong>: Optional. An object that represents the sort criteria for the search. Uses a similar syntax as the MongoDB sort object. Refer to the specific resource schema for the appropriate sort criteria.</p>\n</li>\n<li><p><strong>select</strong>: Optional. An object that represents the projection criteria for the search. Uses a similar syntax as the MongoDB project object. Refer to the specific resource schema for the appropriate projection criteria.</p>\n</li>\n</ul>\n<h4 id=\"response-body\">Response Body:</h4>\n<p>The response body will be in JSON format and include an array of unit objects. Each unit object will include the properties from the Units schema:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>_id</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>tid</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>title</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>type</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>description</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>creator</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>photoUrl</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>standalone</td>\n<td>BOOLEAN</td>\n<td></td>\n</tr>\n<tr>\n<td>catalog</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>createdAt</td>\n<td>TIMESTAMP</td>\n<td></td>\n</tr>\n<tr>\n<td>updatedAt</td>\n<td>TIMESTAMP</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Upon successful completion, this endpoint returns a JSON response with the following fields:</p>\n<ul>\n<li><p><strong>data</strong> (array): An array of unit objects matching the specified search criteria.</p>\n</li>\n<li><p><strong>dataLength</strong> (integer): The number of unit objects returned in the \"data\" field.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","public-api","units",".search"],"host":["api-prod","the-juno","com"],"query":[],"variable":[]}},"response":[{"id":"bf31deb0-8982-4a2d-8fc2-324b3f564c25","name":"List Units - without filters","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/units/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"6c838-fqFuOWP5cHM/6nWYfzyIxizKLFU\""},{"key":"vary","value":"Accept-Encoding"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 30 Apr 2025 09:52:55 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 1000,\n    \"data\": [\n        {\n            \"_id\": \"6811e467e57ff59f88cd7cea\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-30T08:50:47.357Z\",\n            \"updatedAt\": \"2025-04-30T09:20:15.021Z\"\n        },\n        {\n            \"_id\": \"6811e467e57ff59f88cd7cf8\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-30T08:50:47.457Z\",\n            \"updatedAt\": \"2025-04-30T09:20:15.021Z\"\n        },\n        {\n            \"_id\": \"665da1eeefe9a8b9cfb56b29\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F665da1eeefe9a8b9cfb56b29%2F1744115335794%2F1744115339140%2Ftile_Juno_Icon_1744115339140.png?alt=media&token=d462e46c-6944-4d76-b0e7-88a1c068980f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T10:58:54.216Z\",\n            \"updatedAt\": \"2025-04-30T08:50:55.524Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"68111ba91dea8086c7baecd1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T18:34:17.861Z\",\n            \"updatedAt\": \"2025-04-29T18:38:38.875Z\"\n        },\n        {\n            \"_id\": \"68111708e57ff59f88cd7274\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T18:14:32.908Z\",\n            \"updatedAt\": \"2025-04-29T18:14:32.908Z\"\n        },\n        {\n            \"_id\": \"6810dc631dea8086c7bad728\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T14:04:19.837Z\",\n            \"updatedAt\": \"2025-04-29T14:09:10.375Z\"\n        },\n        {\n            \"_id\": \"66ea9371e25794a96d8164c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ea9371e25794a96d8164c7%2F1726649598474%2F1726649601017%2Fvishay_sq_1726649601018.jpg?alt=media&token=873624f5-8030-4e64-b60a-ff85e5258e3b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP for Vishay\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T08:46:41.110Z\",\n            \"updatedAt\": \"2025-04-29T09:00:24.572Z\"\n        },\n        {\n            \"_id\": \"680fdf5acf0aae2f8c57f1d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-28T20:04:42.627Z\",\n            \"updatedAt\": \"2025-04-28T20:05:47.410Z\"\n        },\n        {\n            \"_id\": \"680fdedbcf0aae2f8c57f10e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-28T20:02:35.319Z\",\n            \"updatedAt\": \"2025-04-28T20:03:24.554Z\"\n        },\n        {\n            \"_id\": \"64ae8df51bd72d0008a2e9f7\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"catalog\": 2,\n            \"createdAt\": \"2023-07-12T11:26:45.112Z\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8df51bd72d0008a2e9f7%2F1744115221287%2F1744115225912%2Ftile_Juno_Icon_1744115225913.png?alt=media&token=ea42c51c-67c3-4b00-a9c6-902fe895572a\",\n            \"standalone\": true,\n            \"title\": \"New Hire First Week :)\",\n            \"type\": \"path\",\n            \"updatedAt\": \"2025-04-28T11:36:11.878Z\"\n        },\n        {\n            \"_id\": \"680a853b0a7be85dd76c0bb9\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-24T18:38:51.801Z\",\n            \"updatedAt\": \"2025-04-24T18:44:25.538Z\"\n        },\n        {\n            \"_id\": \"661f9b64bdd6a549551a82da\",\n            \"photoUrl\": \"https://unsplash.com/photos/gp8BLyaTaA0/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8dXNlcnN8ZW58MHwwfHx8MTY5NTA0NDI5NHww\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"SSO and User Provisioning Integration with Juno Journey\",\n            \"description\": \"This guide empowers IT admins to streamline SSO and user data sync integration with Juno Journey. Learn how to set up SSO with SAML 2.0, sync user data, and troubleshoot common issues, resulting in a more seamless user experience on the platform.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-17T09:50:28.918Z\",\n            \"updatedAt\": \"2025-04-23T17:21:14.002Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"661f9b8ad9be04774647bf47\",\n            \"photoUrl\": \"https://unsplash.com/photos/06MHFfYv6YY/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw1fHxnb29nbGV8ZW58MHwwfHx8MTY2NzIyMzg3Mg\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Google Workspace SSO & Directory sync\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-17T09:51:06.311Z\",\n            \"updatedAt\": \"2025-04-23T15:44:15.128Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"6808f71cba99ffe319d0fae8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-23T14:20:12.906Z\",\n            \"updatedAt\": \"2025-04-23T14:25:41.344Z\"\n        },\n        {\n            \"_id\": \"6808ed82ba99ffe319d0f608\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-23T13:39:14.491Z\",\n            \"updatedAt\": \"2025-04-23T13:41:31.377Z\"\n        },\n        {\n            \"_id\": \"64ae9a7aa472ec00094e5db7\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"🎤 Monthly Guest Speakers\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae9a7aa472ec00094e5db7%2F1744115322374%2F1744115325729%2Ftile_Juno_Icon_1744115325730.png?alt=media&token=d1d386a7-60ce-4830-ad63-ae751b39e84f\",\n            \"type\": \"workshop\",\n            \"catalog\": 2,\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T12:20:10.890Z\",\n            \"updatedAt\": \"2025-04-22T16:38:49.672Z\",\n            \"description\": \"\"\n        },\n        {\n            \"_id\": \"67adbd188722d76772ad22fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67adbd188722d76772ad22fa%2F1744115299512%2F1744115303130%2Ftile_Juno_Icon_1744115303130.png?alt=media&token=60c6cf4d-7876-481d-885b-a07aab6df9d2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire Orientation\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:36:24.683Z\",\n            \"updatedAt\": \"2025-04-22T16:37:08.044Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8fd7961516000949b6e5\",\n            \"standalone\": true,\n            \"title\": \"Intro To Leadership 101\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8fd7961516000949b6e5%2F1708522991425%2F1708522997463%2Fleadership_1708522997463.gif?alt=media&token=aa921798-a5de-4a0d-8bbc-45909515bc4d\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:34:47.395Z\",\n            \"updatedAt\": \"2025-04-22T16:35:55.047Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"6807c0a8a28bacd62bfd9a74\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"664c7b0d7c5299569b8b74eb\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-22T16:15:36.063Z\",\n            \"updatedAt\": \"2025-04-22T16:25:24.676Z\"\n        },\n        {\n            \"_id\": \"67d81c06e200296dc3a53f2c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test for eran\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:56:38.484Z\",\n            \"updatedAt\": \"2025-04-22T16:24:03.276Z\"\n        },\n        {\n            \"_id\": \"680772a61b4c44bcd4034fb7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-22T10:42:46.496Z\",\n            \"updatedAt\": \"2025-04-22T10:44:57.551Z\"\n        },\n        {\n            \"_id\": \"6806a1b6945f078b9481bca3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6240581fbe21116a132fa5f1%2F1652008868551%2FCapture%20d%E2%80%99e%CC%81cran%202022-05-08%20a%CC%80%2012.23.18.png?alt=media&token=27aa4abf-e6c4-422c-8109-1f0ac7b46775\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Manager Toolkit\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:51:19.649Z\",\n            \"updatedAt\": \"2025-04-21T19:51:19.649Z\"\n        },\n        {\n            \"_id\": \"68069d84d8a5d3c8f9a8fe5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:33:25.292Z\",\n            \"updatedAt\": \"2025-04-21T19:40:48.075Z\"\n        },\n        {\n            \"_id\": \"68069ccdd8a5d3c8f9a8fc59\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:30:22.050Z\",\n            \"updatedAt\": \"2025-04-21T19:30:22.050Z\"\n        },\n        {\n            \"_id\": \"68069b11945f078b9481b8a7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-10.jpg?alt=media&token=2f77c06e-bab8-4260-b3d8-d55a57ed5a4c\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:22:57.459Z\",\n            \"updatedAt\": \"2025-04-21T19:22:57.459Z\"\n        },\n        {\n            \"_id\": \"68015ee325628994ed522e97\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-17T20:04:51.887Z\",\n            \"updatedAt\": \"2025-04-17T20:04:51.887Z\"\n        },\n        {\n            \"_id\": \"6800c4d7d1097667dd5f183d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67f66d8b95db8e3b8950e406\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-17T09:07:35.619Z\",\n            \"updatedAt\": \"2025-04-17T09:12:39.667Z\"\n        },\n        {\n            \"_id\": \"6686837d6db74c654a05c11e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6686837d6db74c654a05c11e%2F1744115286570%2F1744115290556%2Ftile_Juno_Icon_1744115290556.png?alt=media&token=3bf46cef-00d4-49a2-9b6e-1a7801b40bf4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Advanced Discovery (MEDDPICC)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T11:11:57.635Z\",\n            \"updatedAt\": \"2025-04-17T06:05:10.705Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"66867d2528e60971acc2a40f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66867d2528e60971acc2a40f%2F1744115236595%2F1744115241112%2Ftile_Juno_Icon_1744115241112.png?alt=media&token=295e8ad3-5e6c-4b68-8b81-266e01058a1d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Mastering Sales Discovery\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T10:44:53.828Z\",\n            \"updatedAt\": \"2025-04-17T06:03:31.121Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67fd53dddcb2f5886154b266\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T18:28:45.826Z\",\n            \"updatedAt\": \"2025-04-14T18:30:38.476Z\"\n        },\n        {\n            \"_id\": \"67fcd7ab95db8e3b89516b0e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T09:38:51.037Z\",\n            \"updatedAt\": \"2025-04-14T09:40:34.001Z\"\n        },\n        {\n            \"_id\": \"67fcbfd0ad11f2236a560cc8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Flare test\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T07:57:04.646Z\",\n            \"updatedAt\": \"2025-04-14T08:16:28.141Z\"\n        },\n        {\n            \"_id\": \"67c0adecc6089a7ab93e8df5\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T18:24:44.146Z\",\n            \"updatedAt\": \"2025-04-14T08:11:14.954Z\"\n        },\n        {\n            \"_id\": \"67fcbfcd297592121113dbb1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Flare test\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T07:57:01.728Z\",\n            \"updatedAt\": \"2025-04-14T07:57:01.728Z\"\n        },\n        {\n            \"_id\": \"67fc478a95db8e3b89516098\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-8.jpg?alt=media&token=12bff025-300f-408f-8290-559e4bcfdaf0\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Blog Post\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-13T23:23:54.624Z\",\n            \"updatedAt\": \"2025-04-13T23:40:15.112Z\"\n        },\n        {\n            \"_id\": \"67f78db395db8e3b89512dcc\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T09:21:55.633Z\",\n            \"updatedAt\": \"2025-04-10T20:47:31.349Z\"\n        },\n        {\n            \"_id\": \"67f7e34ec263d6dc37eeeded\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T15:27:10.832Z\",\n            \"updatedAt\": \"2025-04-10T15:27:10.832Z\"\n        },\n        {\n            \"_id\": \"67f7adb5c263d6dc37eed50e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-8.jpg?alt=media&token=ecfb6121-c7c7-4e7c-86cb-402c5fa14515\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Quiz Test for Novidea\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T11:38:29.693Z\",\n            \"updatedAt\": \"2025-04-10T11:40:28.515Z\"\n        },\n        {\n            \"_id\": \"67f787ec95db8e3b89512b0d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T08:57:16.617Z\",\n            \"updatedAt\": \"2025-04-10T08:57:16.617Z\"\n        },\n        {\n            \"_id\": \"67f6db2195db8e3b89511da0\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T20:40:01.614Z\",\n            \"updatedAt\": \"2025-04-09T20:41:55.984Z\"\n        },\n        {\n            \"_id\": \"67f6c9d795db8e3b89511c5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"John's into to hydraulics\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T19:26:15.346Z\",\n            \"updatedAt\": \"2025-04-09T19:26:15.789Z\"\n        },\n        {\n            \"_id\": \"67f6ab9295db8e3b89511344\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T17:17:06.486Z\",\n            \"updatedAt\": \"2025-04-09T17:17:06.486Z\"\n        },\n        {\n            \"_id\": \"64ae8f23c935220009c3f7b4\",\n            \"standalone\": true,\n            \"title\": \"Helping Clients Succeed: A CSM's Guide\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8f23c935220009c3f7b4%2F1708523115302%2F1708523124329%2Ffor_breakfast_1_1708523124329.gif?alt=media&token=8d0705bf-d372-4f24-bb06-4854209cf87a\",\n            \"type\": \"learning\",\n            \"description\": \"An organized approach for identifying clients' needs and helping them reach their goals.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:47.041Z\",\n            \"updatedAt\": \"2025-04-09T11:24:00.253Z\"\n        },\n        {\n            \"_id\": \"67f56630c263d6dc37ee6732\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T18:08:48.457Z\",\n            \"updatedAt\": \"2025-04-08T18:08:48.457Z\"\n        },\n        {\n            \"_id\": \"67f5662f95db8e3b8950cfb8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T18:08:48.329Z\",\n            \"updatedAt\": \"2025-04-08T18:08:48.329Z\"\n        },\n        {\n            \"_id\": \"64d4e39a1eb9fb00080fd0fc\",\n            \"standalone\": true,\n            \"title\": \"30-60-90 Employee Onboarding Plan\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a459b316ec440008db6515%2F1673199628285%2F1673199628545%2F30-60-90.png?alt=media&token=8071aee4-0856-4c3a-86bb-a3a6bf15ca06\",\n            \"type\": \"learning\",\n            \"description\": \"Map out a clear course of action for a new employee during the first 30, 60, and 90 days of their new job.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T13:18:18.313Z\",\n            \"updatedAt\": \"2025-04-08T15:14:45.689Z\"\n        },\n        {\n            \"_id\": \"64ae9144c935220009c4027b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Joiners Breakfast\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-4.jpg?alt=media&token=7a6d3672-4d6c-4cc2-a1f7-4f94714fee5a\",\n            \"type\": \"workshop\",\n            \"catalog\": 2,\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:40:52.746Z\",\n            \"updatedAt\": \"2025-04-08T15:13:57.149Z\"\n        },\n        {\n            \"_id\": \"67f538a395db8e3b8950c05e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T14:54:27.915Z\",\n            \"updatedAt\": \"2025-04-08T15:00:12.188Z\"\n        },\n        {\n            \"_id\": \"6717ca606f7de1baf71a2f91\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6717ca606f7de1baf71a2f91%2F1729612467665%2F1729612470499%2FStudio_Home_Eptura5_1729612470499.webp?alt=media&token=e3c256d2-2f1f-41da-b149-2dac9f1140fd\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Eptura\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:53:04.421Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.785Z\"\n        },\n        {\n            \"_id\": \"66ebfcffc18397c71cb8ccd8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T10:29:19.496Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.448Z\"\n        },\n        {\n            \"_id\": \"66cc53d50f04c831c57e396e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Einat\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T10:07:17.132Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.164Z\"\n        },\n        {\n            \"_id\": \"669a32442dcd98971af2448e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669a32442dcd98971af2448e%2F1721381486721%2F1721381509719%2Finput_output_global_logo_1721381509720.jpeg?alt=media&token=a0b75268-c176-4891-8f1b-bb71fecd92a0\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"IOHK & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-19T09:30:44.994Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.024Z\"\n        },\n        {\n            \"_id\": \"67b75fb3e2c1edd48a258e06\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67b75fb3e2c1edd48a258e06%2F1740070959487%2F1740070963026%2F131436_1740070963026.png?alt=media&token=f1514d2c-dc94-4503-bbc0-a0af614e371c\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Liferay\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T17:00:35.516Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.933Z\"\n        },\n        {\n            \"_id\": \"6706265cd3123128d1886ded\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65afb03d843c7241c70a4b04%2F1706022347938%2F1706022354409%2Fperion_sq_1706022354409.png?alt=media&token=c758b666-a131-40cf-9e36-a8e3471f2792\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Perion\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T06:44:44.334Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.927Z\"\n        },\n        {\n            \"_id\": \"6705440a904f4783a2d42876\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6705440a904f4783a2d42876%2F1728398592563%2F1728398596592%2FL_sq_1728398596593.jpg?alt=media&token=2ed608c3-8731-4dcf-87c3-0bcc7bf78baa\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"L & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-08T14:39:06.588Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.924Z\"\n        },\n        {\n            \"_id\": \"67069a26f8009f7435affc36\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67069a26f8009f7435affc36%2F1728486442348%2F1728486445242%2FAVI_logo_CMYK_WhiteRule_1728486445242.svg?alt=media&token=3c0a3c80-5808-4523-b265-00a4d310de7a\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"AVI Systems & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T14:58:46.049Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.921Z\"\n        },\n        {\n            \"_id\": \"66e7ec3024d3b4d035debfe3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66e7ec3024d3b4d035debfe3%2F1726475506128%2F1726475510948%2Flocus_1726475510948.png?alt=media&token=2f4f7e22-c07d-4d49-9c39-8f243c787514\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"LocusView & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-16T08:28:32.725Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.915Z\"\n        },\n        {\n            \"_id\": \"66db27ae50270c2f24bdbcc5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66db27ae50270c2f24bdbcc5%2F1725638601944%2F1725638612836%2Fhopskipdrive_logo_vector_1725638612836.png?alt=media&token=7904d380-28a5-46a1-879c-0edd2f8c4eff\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"HopSkipDrive & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-06T16:02:54.411Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.912Z\"\n        },\n        {\n            \"_id\": \"66e28b282786c2ea1dd832a5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65ef2063e20781479bc9ad43%2F1710170286389%2F1710170288953%2FLogo_Euronet_1710170288954.jpg?alt=media&token=08d9bbd3-80cc-4d41-928f-36a87bc2f94e\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Euronet\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-12T06:33:12.180Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.910Z\"\n        },\n        {\n            \"_id\": \"67d1f8f31b688101276b8d1c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T21:13:23.294Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.907Z\"\n        },\n        {\n            \"_id\": \"67b72254479c15e402dcc5d3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707b533840b680824de31b3%2F1728559173408%2F1728559176538%2Fnmq_1728559176538.jpg?alt=media&token=9da22f37-14f9-47c9-8a1f-3d101b2bfe3b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Dialectica (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T12:38:44.243Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.905Z\"\n        },\n        {\n            \"_id\": \"67b72e4c5ba51ffa2b86faf4\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Sify Technologies\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T13:29:48.565Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.899Z\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67b72e4c5ba51ffa2b86faf4%2F1740061939112%2F1740061941598%2Fsify_1740061941598.webp?alt=media&token=223c13ee-2b69-4de5-af41-12b1fed1b9fb\"\n        },\n        {\n            \"_id\": \"66ec0fef4a865d7a9077b46b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ec0fef4a865d7a9077b46b%2F1726752080313%2F1726752083990%2Fap_1726752083990.png?alt=media&token=85c503d1-6b62-48ad-aaa3-9c4052286dc0\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"apsolut & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T11:50:07.050Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.870Z\"\n        },\n        {\n            \"_id\": \"66d5b7cc739352cf9938a9b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d5b7cc739352cf9938a9b8%2F1725282501555%2F1725282506058%2Fgray_1725282506058.jpeg?alt=media&token=e1b0d94b-0553-4ba8-9f8e-ab6d0c8e8905\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"GrayQuest & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-02T13:04:12.146Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.868Z\"\n        },\n        {\n            \"_id\": \"6721168ddebb1f002d2949a9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6721168ddebb1f002d2949a9%2F1730222237104%2F1730222242201%2F9fin_1730222242201.jpg?alt=media&token=a7936798-02e0-49fd-b622-431fae72a7e6\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for 9fin\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-29T17:08:29.341Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.866Z\"\n        },\n        {\n            \"_id\": \"670d2b602ff6997cd574f312\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F670d2b602ff6997cd574f312%2F1728916747742%2F1728916751908%2Fclever_1728916751908.jpg?alt=media&token=ad24d9bf-88f6-47e0-9017-55af88fb33a3\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Clever Advertising \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T14:32:00.929Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.864Z\"\n        },\n        {\n            \"_id\": \"670ceac95edff1a8701afc92\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65d74263599ea848f06c21b4%2F1708606101264%2F1708606103918%2Fappsflyer2449_1708606103919.jpg?alt=media&token=9438ecfb-cd6c-47d2-88da-27bac6d55665\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Appsflyer\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T09:56:25.078Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.861Z\"\n        },\n        {\n            \"_id\": \"674dce7b384ef40e0f78378d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F674dce7b384ef40e0f78378d%2F1733152493272%2F1733152495728%2F67408d9a83f63324004b4c76_LIghtricks_02_1733152495728.png?alt=media&token=c1bf784e-ec1f-43bf-a7dc-65e91538c703\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Lightricks & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T15:12:59.465Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.847Z\"\n        },\n        {\n            \"_id\": \"6748957c7a3bbd2332ef31c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6748957c7a3bbd2332ef31c7%2F1732814963828%2F1732814969944%2Ffabuwood_cabinetry_corp__logo_1732814969944.jpeg?alt=media&token=61d28214-ad60-4900-bef8-03ca66742f1f\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Fabuwood & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T16:08:28.667Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.845Z\"\n        },\n        {\n            \"_id\": \"67486fba83f8d580a033b865\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67486fba83f8d580a033b865%2F1732800922717%2F1732800925493%2FArgus_URL_Logo_RGB_V1_scaled_1732800925493.jpg?alt=media&token=6258bbcb-a17a-472d-a2cd-c241003d9198\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Argus Media & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T13:27:22.369Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.843Z\"\n        },\n        {\n            \"_id\": \"6734c7745863a115854ba154\",\n            \"photoUrl\": \"https://unsplash.com/photos/I1Lv2yX67GI/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHw1fHxpdGFseXxlbnwwfDB8fHwxNzMxNTEyMjMzfDA\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Juno Journey Platform\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-13T15:36:20.517Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.841Z\"\n        },\n        {\n            \"_id\": \"6729e6ac1227f7e47e2912a8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6729e6ac1227f7e47e2912a8%2F1730799669477%2F1730799672614%2Fwww_argus_1024x512_1730799672614.png?alt=media&token=66710ade-4f86-4ecf-a448-772e0abd2001\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Argus Media & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T09:34:36.980Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.839Z\"\n        },\n        {\n            \"_id\": \"66cc5d6e899f99c375ddec54\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66cc5d6e899f99c375ddec54%2F1724669397695%2F1724669403034%2FSoundCloudnew_Logo_1724669403034.jpg?alt=media&token=011b6075-cb96-4e34-a1f2-9871e7a030c8\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SoundCloud & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T10:48:14.029Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.836Z\"\n        },\n        {\n            \"_id\": \"66cf7bc8bb811c2a3c16360c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66cf7bc8bb811c2a3c16360c%2F1724873752198%2F1724873758379%2Fdribbble_brightline_branding_logo2_1724873758379.jpg?alt=media&token=edfee2bf-0c48-4670-b3c8-c74ab5952d7a\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Brightline & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T19:34:32.750Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.834Z\"\n        },\n        {\n            \"_id\": \"66b09c4332a6229cbceb7cde\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66b09c4332a6229cbceb7cde%2F1722850481842%2F1722850484368%2Fesh_1722850484369.jpg?alt=media&token=6d23fef1-7846-4dbb-b751-d6ea94e2c96d\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for Esh\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T09:32:51.630Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.832Z\"\n        },\n        {\n            \"_id\": \"669949c4757485cb10ba4837\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669949c4757485cb10ba4837%2F1721322023453%2F1721322039472%2Fnymbus_logo_1721322039472.jpeg?alt=media&token=eebf6e44-d6fa-45a8-9240-2f9e5195fb5f\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Nymbus & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T16:58:44.293Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.830Z\"\n        },\n        {\n            \"_id\": \"6708f93a34530e7039744dab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6708f93a34530e7039744dab%2F1728641650067%2F1728641653090%2Fgrowe_sq_1728641653090.png?alt=media&token=2d761c09-c402-4ccb-a0a8-b033814de44c\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Growe\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-11T10:08:58.784Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.827Z\"\n        },\n        {\n            \"_id\": \"6707b533840b680824de31b3\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Dialectica\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T11:06:27.071Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.825Z\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707b533840b680824de31b3%2F1740072592538%2F1740072595614%2Funnamed_1740072595614.png?alt=media&token=f5c66f27-86ea-4a59-af70-818c14ff0d02\"\n        },\n        {\n            \"_id\": \"66faf24867f3900a7b7ae82d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"signature\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T18:47:36.024Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.823Z\"\n        },\n        {\n            \"_id\": \"66f439bf49b981400dd0203a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65e087b66152ea6a2bbea6be%2F1709213954972%2F1709213957169%2Fbright_machines_microfactories_1709213957169.webp?alt=media&token=b0e692d3-f4b5-4a63-9f91-fe61438c3e88\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Bright Machines & Juno Journey\",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T16:26:39.294Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.821Z\"\n        },\n        {\n            \"_id\": \"66ec0c318ff83a7c31271190\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ec0c318ff83a7c31271190%2F1726745757477%2F1726745816680%2FJuno_logo_1726745816680.png?alt=media&token=fb61e2cd-9bb7-4aa8-b110-7427566b037e\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's Journey's LXP \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T11:34:09.529Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.818Z\"\n        },\n        {\n            \"_id\": \"66df28548968a9f4e0c2dd46\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Signature example\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T16:54:44.942Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.812Z\"\n        },\n        {\n            \"_id\": \"6672cca8b28ae4948c980b51\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Magnolia & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:48.115Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.810Z\"\n        },\n        {\n            \"_id\": \"6666fb157f7d3ebc73d45886\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Keepet & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T13:09:41.776Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.807Z\"\n        },\n        {\n            \"_id\": \"66620c93a9b54d8c844dab45\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Partners& + Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T19:22:59.545Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.805Z\"\n        },\n        {\n            \"_id\": \"66704ea81dfbc5e55546aac4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66704ea81dfbc5e55546aac4%2F1718636240065%2F1718636242606%2Fbrampton_1718636242606.webp?alt=media&token=c01e46d7-be55-4cf0-9afc-bd5039eda114\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for City of Brampton\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T14:56:40.412Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.802Z\"\n        },\n        {\n            \"_id\": \"6655babc6e620061cb8822ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6655babc6e620061cb8822ac%2F1716894459805%2F1716894462966%2Faviv_1716894462966.png?alt=media&token=80f05e1b-daf0-4e93-b9aa-f1fb6c524091\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"AVIV & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-28T11:06:36.197Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.793Z\"\n        },\n        {\n            \"_id\": \"6660649e79411940223cd036\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65d841d3a051870790044b01%2F1708671585261%2F1708671588343%2Friskified_logo_feature_1708671588343.jpg?alt=media&token=0fc4eb94-2b71-4905-9970-c0128d3119e7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Riskified\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T13:14:06.794Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.791Z\"\n        },\n        {\n            \"_id\": \"6657865c7d985c5be7c1c547\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6657865c7d985c5be7c1c547%2F1717012289310%2F1717012292112%2Fday_1717012292112.jpg?alt=media&token=291f25a1-be93-4148-9603-d857b2fab6da\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Daylight & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T19:47:40.354Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.787Z\"\n        },\n        {\n            \"_id\": \"662ba318c6869d4750d11205\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F662ba318c6869d4750d11205%2F1714135952538%2F1714135955312%2Fideals_solutions_group_logo_1714135955312.jpeg?alt=media&token=8ccfc838-d079-4004-97d1-4bf46a6feb37\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"iDeals & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:50:32.690Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.781Z\"\n        },\n        {\n            \"_id\": \"66cc8118d3ae3274daae3eec\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Brainshield\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T13:20:24.845Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.779Z\"\n        },\n        {\n            \"_id\": \"66a9e58f197ba53d10f1aa06\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66a9e58f197ba53d10f1aa06%2F1722410636245%2F1722410639998%2Fklein_1722410639998.png?alt=media&token=e4cffbfd-9d83-47a2-af02-161b40f8ba68\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Kleinschmidt & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T07:19:43.182Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.773Z\"\n        },\n        {\n            \"_id\": \"66995a3f47b7eb22636eb508\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66995a3f47b7eb22636eb508%2F1721326157800%2F1721326163698%2FRokt_1721326163698.jpg?alt=media&token=c3ac1cfa-ddc8-4c56-80e6-d5a64e9080bd\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Rokt & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T18:09:03.529Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.769Z\"\n        },\n        {\n            \"_id\": \"66991aa85f03fbeb5c5e6691\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66991aa85f03fbeb5c5e6691%2F1721309928479%2F1721309932201%2FJobber_Jobber_Raises__100_Million_Growth_Round_1721309932201.jpg?alt=media&token=e51973fe-ccdb-4ca4-8447-651451a7cfc6\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Jobber & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T13:37:44.913Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.766Z\"\n        },\n        {\n            \"_id\": \"66976655b5500b71558a8571\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66976655b5500b71558a8571%2F1721198417919%2F1721198421153%2FRadancy_Vertical_Logo_1COL_RGB_1721198421154.webp?alt=media&token=f43606ed-e41d-4260-863c-da04d5ee8743\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Radancy & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T06:36:05.050Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.762Z\"\n        },\n        {\n            \"_id\": \"668eab1e2e601ced2156fec1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668eab1e2e601ced2156fec1%2F1720626364366%2F1720626367143%2FOne_Inc_Partner_Logo_640x360_MC6J3F3G3K5NC3JPIOAUVYIFLCAQ_1720626367144.jpg?alt=media&token=d04bd98d-2777-4557-9369-107d1e5ec192\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"OneInc & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T15:39:10.833Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.760Z\"\n        },\n        {\n            \"_id\": \"668beedafee85e4a344282eb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668beedafee85e4a344282eb%2F1720447724819%2F1720447730604%2FCORPS_logo_300x200_1_1720447730604.jpg?alt=media&token=501be886-019c-49ae-8c73-ca6b3ddc6f64\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Corps Security & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-08T13:51:22.953Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.757Z\"\n        },\n        {\n            \"_id\": \"66868ab46db74c654a064183\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66868ab46db74c654a064183%2F1720094365400%2F1720094369309%2FHI9M_1720094369309.gif?alt=media&token=c2bd9c66-e57c-4c43-92fb-5f4509cc605f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Partner Deal Registration\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T11:42:44.988Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.755Z\",\n            \"description\": \"\"\n        },\n        {\n            \"_id\": \"6630c61f561e05260f9923db\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6630c61f561e05260f9923db%2F1715236034166%2F1715236036906%2FTIP2_1715236036906.jpg?alt=media&token=883a2e97-5821-48cd-92d4-a3c9ebed93ca\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Trafigura & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-30T10:21:19.607Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.753Z\"\n        },\n        {\n            \"_id\": \"66349d3aceb532bbf87818e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66349d3aceb532bbf87818e3%2F1714724248611%2F1714724251055%2FLarge___Wordmark___Whitebg_1714724251055.png?alt=media&token=6050a13b-10e1-4908-8eb3-c3903f5e3f05\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"TeamTailor & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-03T08:15:54.923Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.750Z\"\n        },\n        {\n            \"_id\": \"6631e5eb8900e3ee2653007c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65e087b66152ea6a2bbea6be%2F1709213954972%2F1709213957169%2Fbright_machines_microfactories_1709213957169.webp?alt=media&token=b0e692d3-f4b5-4a63-9f91-fe61438c3e88\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Bright Machines & Juno Journey\",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-01T06:49:15.555Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.748Z\"\n        },\n        {\n            \"_id\": \"6620f26352d99f3a257a9aa0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6620f26352d99f3a257a9aa0%2F1713435350176%2F1713435353954%2Frisk_1713435353955.jpg?alt=media&token=dfa4f556-e3f8-4460-9194-781481899229\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Risk.inc & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-18T10:13:55.248Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.746Z\"\n        },\n        {\n            \"_id\": \"667ad00f8ad4bb052c3a224b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F667ad00f8ad4bb052c3a224b%2F1719325264269%2F1719325267120%2Fnetomi_1719325267120.png?alt=media&token=778c950c-0f1b-48a5-882d-98773eaf1a04\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Netomi & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-25T14:11:27.446Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.743Z\"\n        },\n        {\n            \"_id\": \"667041f35c58c9a3c6f11355\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F64f59e5532b5110009c7eb45%2F1699352187952%2F1699352192008%2FJuno%20Journey%20Product%20Release%20Notes%20Course.png?alt=media&token=715f9dc7-85f5-43d8-a4d6-6f6081927260\",\n            \"standalone\": true,\n            \"creator\": \"64da167c0bc1ac0009960bed\",\n            \"title\": \"Juno Journey Product Release Notes\",\n            \"description\": \"Read about the upcoming releases or refresh your memory about previous ones to stay ahead of the curve!\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T14:02:27.010Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.737Z\"\n        },\n        {\n            \"_id\": \"666ad6014b057320e362ca5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F666ad6014b057320e362ca5e%2F1718277718207%2F1718277721128%2Fukl_1718277721128.jpeg?alt=media&token=3fbbfeaf-6a0e-4a4a-b09f-752f20a9a6bb\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Uklon & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T11:20:33.969Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.735Z\"\n        },\n        {\n            \"_id\": \"665de1ef4ff4198eb03f4a81\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F665de1ef4ff4198eb03f4a81%2F1717429592519%2F1717429595702%2Fe24ebfe18c1e5f8e440dc46cbb3dcb08_1717429595702.png?alt=media&token=79e5542e-f31f-40cd-b976-c8cf320d4a44\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Blueground & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T15:31:59.922Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.732Z\"\n        },\n        {\n            \"_id\": \"6657312ac99b392b8c964d79\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6657312ac99b392b8c964d79%2F1717012035704%2F1717012041377%2Fpushpay_1717012041377.jpg?alt=media&token=7a259c07-1b44-4326-b049-ad106c0bd89a\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Pushpay & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T13:44:10.844Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.727Z\"\n        },\n        {\n            \"_id\": \"664664b66c4f3ef2f50651c3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F664664b66c4f3ef2f50651c3%2F1715896951101%2F1715896956562%2Fmcs_1715896956563.jpg?alt=media&token=be5471a5-8eae-4988-9aa6-b6e82727a0ff\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"MCS360 & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-16T19:55:34.494Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.711Z\"\n        },\n        {\n            \"_id\": \"6646138a6136dbb776bbec6a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65f3730aa1718f2d2058baaf%2F1710453648625%2F1710453651678%2Fxfab_1710453651678.jpg?alt=media&token=741af392-ba56-4c65-bf4c-0002c65000e7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"X-FAB & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-16T14:09:14.619Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.708Z\"\n        },\n        {\n            \"_id\": \"6644e0e6f3785bb0e8ede50e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6644e0e6f3785bb0e8ede50e%2F1715790264381%2F1715790269379%2Ftabit_1715790269379.jpeg?alt=media&token=81ebe9e5-39d9-4dce-8885-50d6cacbca45\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Tabit & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T16:20:54.655Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.705Z\"\n        },\n        {\n            \"_id\": \"662135690e27f09834fedd39\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660aef200a1cb35e072c18a9%2F1713452013622%2F1713452015940%2Faccordion_partners_logo_1713452015940.jpeg?alt=media&token=3bf7b598-3662-48bf-ac24-9eeefe36b317\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"Accordion & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-18T14:59:53.511Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.696Z\"\n        },\n        {\n            \"_id\": \"65d345197360b1b8825f1018\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-19T12:10:01.915Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.689Z\"\n        },\n        {\n            \"_id\": \"65784579cdf6800009a4673e\",\n            \"standalone\": true,\n            \"creator\": \"65783e74417a430009ec3f0c\",\n            \"title\": \"ddffdfdfd\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-12T11:35:21.950Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.686Z\"\n        },\n        {\n            \"_id\": \"64edfddd6b84130008435b23\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"createdAt\": \"2023-08-29T14:17:01.983Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.682Z\"\n        },\n        {\n            \"_id\": \"64d4cd57ab2ba50008fcbfa7\",\n            \"standalone\": true,\n            \"title\": \"5 Effective Sales Prospecting Email Templates\",\n            \"photoUrl\": \"https://unsplash.com/photos/3Mhgvrk4tjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbWFpbHxlbnwwfDB8fHwxNjc1ODc5OTMy\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:43:19.144Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.677Z\"\n        },\n        {\n            \"_id\": \"64d4cd40cca5da0009614dbd\",\n            \"standalone\": true,\n            \"title\": \" Sales Discovery Call Template\",\n            \"photoUrl\": \"https://unsplash.com/photos/6YKbEudk7rM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxkaXNjb3ZlcnxlbnwwfDB8fHwxNjQ3NzkxOTI2\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:56.427Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.674Z\"\n        },\n        {\n            \"_id\": \"64d4cd26e7517800092166ac\",\n            \"standalone\": true,\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:30.912Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.671Z\"\n        },\n        {\n            \"_id\": \"64d4cd123c86600008eae9a9\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:10.628Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.669Z\"\n        },\n        {\n            \"_id\": \"64ae8fee1add050009ff2e0d\",\n            \"standalone\": true,\n            \"title\": \"Share Version Updates with Customer-Facing Teams\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f37096d0c2e70007efa990%2F1676898884941%2F1676898891469%2FUpdate.png?alt=media&token=699951a0-da7f-4eb8-a433-f1a65bd61b6e\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:35:10.058Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.646Z\"\n        },\n        {\n            \"_id\": \"64ae8f861ebb7800083b4da6\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Update July 2023\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:33:26.341Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.644Z\"\n        },\n        {\n            \"_id\": \"64ae8f4f10d0ab0009c034b7\",\n            \"standalone\": true,\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"type\": \"learning\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:32:31.151Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.642Z\"\n        },\n        {\n            \"_id\": \"64ae8e6ac935220009c3f276\",\n            \"standalone\": true,\n            \"title\": \"Inclusion & Diversity In The Workplace\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6267a5b009d744b808c0dede%2F1651604560564%2FInclusion%20%26%20Diversity%20In%20The%20Workplace.png?alt=media&token=bceadcf3-da3b-4da0-8ce8-b6e064d51815\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:28:42.696Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.638Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8e5df87e180009051f37\",\n            \"standalone\": true,\n            \"title\": \"Security & Data Protection\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:28:29.662Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.636Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"668680931155286111f7816b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668680931155286111f7816b%2F1744115407963%2F1744115411185%2Ftile_Juno_Icon_1744115411186.png?alt=media&token=e1575bd3-f51b-4c92-a197-c936c7f6d550\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Development: SDR >> AE\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T10:59:31.057Z\",\n            \"updatedAt\": \"2025-04-08T12:30:12.045Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"65003159e06a7000098be54b\",\n            \"standalone\": true,\n            \"title\": \"Creative Problem Solving\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F65003159e06a7000098be54b%2F1744115251873%2F1744115255453%2Ftile_Juno_Icon_1744115255453.png?alt=media&token=62921872-b5b9-411a-aa06-fb084237e141\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-12T09:37:30.266Z\",\n            \"updatedAt\": \"2025-04-08T12:27:36.301Z\",\n            \"catalog\": 2,\n            \"description\": \"This is a course on creative problem solving \"\n        },\n        {\n            \"_id\": \"67bc706a50c08e7f7d1f4796\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67bc706a50c08e7f7d1f4796%2F1744115196967%2F1744115204146%2Ftile_Juno_Icon_1744115204146.png?alt=media&token=3b886402-d258-41c6-b84d-f0bf92a3eeab\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Sales Training - Challenger Sales\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:13:14.701Z\",\n            \"updatedAt\": \"2025-04-08T12:26:45.099Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67f4da10d2db6e8569ded230\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T08:10:56.818Z\",\n            \"updatedAt\": \"2025-04-08T08:10:56.818Z\"\n        },\n        {\n            \"_id\": \"67f3f05bb3b6166988a43c28\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6252d5c741d2555c81a005f8%2F1651605554110%2FPerformance%20Review%20Questions%20.webp?alt=media&token=5ce02d48-0998-4b89-9a0a-3b55d8412312\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Performance Review Questions \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:33:47.204Z\",\n            \"updatedAt\": \"2025-04-07T15:33:47.204Z\"\n        },\n        {\n            \"_id\": \"67f3eff39140a87d38a53bda\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:32:04.039Z\",\n            \"updatedAt\": \"2025-04-07T15:32:04.039Z\"\n        },\n        {\n            \"_id\": \"67f3ef3d054a504c9fe0da5f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:29:02.321Z\",\n            \"updatedAt\": \"2025-04-07T15:29:02.321Z\"\n        },\n        {\n            \"_id\": \"67ed1ef190e56ef2dfd710c5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-2.jpg?alt=media&token=09eed7ef-42e5-4f1f-8bad-060878e440ae\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-02T11:26:41.124Z\",\n            \"updatedAt\": \"2025-04-02T11:26:41.124Z\"\n        },\n        {\n            \"_id\": \"67eac21d43e1c23416cdca8b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-31T16:26:06.132Z\",\n            \"updatedAt\": \"2025-03-31T16:26:06.132Z\"\n        },\n        {\n            \"_id\": \"67ea9d6974b688bf5d946fe2\",\n            \"photoUrl\": \"https://unsplash.com/photos/s9CC2SKySJM/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8c2tpbGxzfGVufDB8MHx8fDE3MDcxMjQzNzZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Learning Requirements Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-31T13:49:29.748Z\",\n            \"updatedAt\": \"2025-03-31T13:49:29.748Z\"\n        },\n        {\n            \"_id\": \"67e99387667abbc79875a806\",\n            \"photoUrl\": \"https://www.google.com/s2/favicons?domain=https://www.disco.co/blog/ai-tools-for-career-development-programs&sz=128\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"What are AI Tools for Career Development Programs in 2025?\",\n            \"description\": \"Wondering how artificial intelligence can transform your career development program? AI tools for career development programs provide personalized guidance, skill assessments, interview practice, and job matching.\",\n            \"type\": \"article\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-30T18:55:03.074Z\",\n            \"updatedAt\": \"2025-03-30T18:56:05.158Z\"\n        },\n        {\n            \"_id\": \"67e596a166f894e5bb475563\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T18:19:13.952Z\",\n            \"updatedAt\": \"2025-03-27T18:19:13.952Z\"\n        },\n        {\n            \"_id\": \"67e5969049139fbe179072be\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T18:18:56.757Z\",\n            \"updatedAt\": \"2025-03-27T18:18:56.757Z\"\n        },\n        {\n            \"_id\": \"67e5314f25e4bd22612ac96c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T11:06:55.424Z\",\n            \"updatedAt\": \"2025-03-27T11:07:06.472Z\"\n        },\n        {\n            \"_id\": \"67e45f5c1e81d82f38629922\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T20:11:08.719Z\",\n            \"updatedAt\": \"2025-03-26T20:11:08.719Z\"\n        },\n        {\n            \"_id\": \"67e41a23909ae2b092084027\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-9.jpg?alt=media&token=da1bdd39-2b6f-44dd-a304-7cd905fc7567\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Behavox AI Security \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T15:15:47.731Z\",\n            \"updatedAt\": \"2025-03-26T15:16:28.091Z\"\n        },\n        {\n            \"_id\": \"67e40edf97d8cecef65bc375\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T14:27:43.544Z\",\n            \"updatedAt\": \"2025-03-26T14:27:43.544Z\"\n        },\n        {\n            \"_id\": \"67e3e93e2224a439ee5e9ada\",\n            \"photoUrl\": \"https://unsplash.com/photos/s9CC2SKySJM/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8c2tpbGxzfGVufDB8MHx8fDE3MDcxMjQzNzZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Learning Requirements Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T11:47:10.894Z\",\n            \"updatedAt\": \"2025-03-26T11:47:10.894Z\"\n        },\n        {\n            \"_id\": \"67e2a60480c32215c6fc5c73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-25T12:48:05.534Z\",\n            \"updatedAt\": \"2025-03-25T12:48:05.534Z\"\n        },\n        {\n            \"_id\": \"67e2a49fe6373efb88402664\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-25T12:42:08.298Z\",\n            \"updatedAt\": \"2025-03-25T12:42:08.298Z\"\n        },\n        {\n            \"_id\": \"67e19235d0d69d57a052dca2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:11:18.407Z\",\n            \"updatedAt\": \"2025-03-24T17:11:18.407Z\"\n        },\n        {\n            \"_id\": \"67e191d68b5139358329cc23\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:09:43.541Z\",\n            \"updatedAt\": \"2025-03-24T17:09:43.541Z\"\n        },\n        {\n            \"_id\": \"67e19142e30e15eb5680dc6e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:07:15.975Z\",\n            \"updatedAt\": \"2025-03-24T17:07:15.975Z\"\n        },\n        {\n            \"_id\": \"67e190c60c102768a292887c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:05:10.833Z\",\n            \"updatedAt\": \"2025-03-24T17:05:10.833Z\"\n        },\n        {\n            \"_id\": \"67dd3355a543f0ee418fbc55\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-21T09:37:25.995Z\",\n            \"updatedAt\": \"2025-03-21T09:37:25.995Z\"\n        },\n        {\n            \"_id\": \"67dc37d00b04bde3c63ec1f3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T15:44:17.152Z\",\n            \"updatedAt\": \"2025-03-20T15:44:39.264Z\"\n        },\n        {\n            \"_id\": \"67dc356c0b04bde3c63eb160\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T15:34:04.860Z\",\n            \"updatedAt\": \"2025-03-20T15:34:04.860Z\"\n        },\n        {\n            \"_id\": \"67dc343639645341e6de8e76\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T15:28:54.827Z\",\n            \"updatedAt\": \"2025-03-20T15:28:54.827Z\"\n        },\n        {\n            \"_id\": \"67dc131f806752ce972dc307\",\n            \"photoUrl\": \"https://unsplash.com/photos/Px3Jjwi0mak/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw3fHxwbGFudCUyMGdyb3dpbmd8ZW58MHwwfHx8MTY3Mzc3Njg3OQ\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Performance Review Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T13:07:43.245Z\",\n            \"updatedAt\": \"2025-03-20T13:14:40.326Z\"\n        },\n        {\n            \"_id\": \"67dc1013b6fb820f53833a12\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63ccf6ac59595a0007ed7a5f%2F1675176954706%2F1675176954976%2Fsurvey.png?alt=media&token=fb504640-fc73-4097-ac43-70a930d90982\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Employee Effectiveness Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T12:54:44.001Z\",\n            \"updatedAt\": \"2025-03-20T13:06:57.890Z\"\n        },\n        {\n            \"_id\": \"66e852a4497e430864e020a5\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-16T15:45:40.110Z\",\n            \"updatedAt\": \"2025-03-20T13:00:03.023Z\"\n        },\n        {\n            \"_id\": \"67dbef18f165cb9971d14c6c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Webinar series\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T10:34:00.605Z\",\n            \"updatedAt\": \"2025-03-20T10:34:01.006Z\"\n        },\n        {\n            \"_id\": \"67dbecf67c2a67d203cd62ae\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T10:24:54.979Z\",\n            \"updatedAt\": \"2025-03-20T10:24:54.979Z\"\n        },\n        {\n            \"_id\": \"67da8c77317603bd49ed7342\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-3.jpg?alt=media&token=022cc7ce-2f1a-45db-bd99-fc10e1559dc6\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"AppsFlyer - R&D Workshop \",\n            \"type\": \"workshop\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-19T09:20:55.667Z\",\n            \"updatedAt\": \"2025-03-19T09:21:21.822Z\"\n        },\n        {\n            \"_id\": \"67d9dd5f9f44ee7f94d365fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-18T20:53:51.775Z\",\n            \"updatedAt\": \"2025-03-18T20:53:52.264Z\"\n        },\n        {\n            \"_id\": \"67d830c8f4e9bb8cc4fb67c2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T14:25:12.668Z\",\n            \"updatedAt\": \"2025-03-17T14:25:12.668Z\"\n        },\n        {\n            \"_id\": \"67d81242459e5ac59062b6d4\",\n            \"photoUrl\": \"https://unsplash.com/photos/pypeCEaJeZY/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxM3x8c3VydmV5fGVufDB8MHx8fDE3NDIyMTM3NzN8MA\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Sales Discovery Follow Up Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:14:58.852Z\",\n            \"updatedAt\": \"2025-03-17T12:16:45.699Z\"\n        },\n        {\n            \"_id\": \"67d2bc605fbac1d2860705e1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T11:07:12.101Z\",\n            \"updatedAt\": \"2025-03-13T11:08:10.199Z\"\n        },\n        {\n            \"_id\": \"67d2bb3d4147088faa488594\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T11:02:21.870Z\",\n            \"updatedAt\": \"2025-03-13T11:02:21.870Z\"\n        },\n        {\n            \"_id\": \"67d2bb0e5fbac1d28606dfec\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T11:01:34.945Z\",\n            \"updatedAt\": \"2025-03-13T11:01:49.211Z\"\n        },\n        {\n            \"_id\": \"67d2a784ca707794870d9a4d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T09:38:13.105Z\",\n            \"updatedAt\": \"2025-03-13T09:38:13.105Z\"\n        },\n        {\n            \"_id\": \"67d18789750b771e6762562b\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T13:09:29.678Z\",\n            \"updatedAt\": \"2025-03-12T15:25:22.906Z\"\n        },\n        {\n            \"_id\": \"67d1a52efde00e116f44f18d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T15:15:59.356Z\",\n            \"updatedAt\": \"2025-03-12T15:15:59.356Z\"\n        },\n        {\n            \"_id\": \"67d17c5589fa21c5eb551a4a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T12:21:58.288Z\",\n            \"updatedAt\": \"2025-03-12T12:21:58.288Z\"\n        },\n        {\n            \"_id\": \"67d17c5ba0fa7ac6c59b17a2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T12:21:48.454Z\",\n            \"updatedAt\": \"2025-03-12T12:21:48.454Z\"\n        },\n        {\n            \"_id\": \"67d14f9c927c665de6269816\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T09:10:52.777Z\",\n            \"updatedAt\": \"2025-03-12T09:10:52.777Z\"\n        },\n        {\n            \"_id\": \"67d09cde570b63766bba3597\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-11T20:28:14.314Z\",\n            \"updatedAt\": \"2025-03-11T20:28:33.981Z\"\n        },\n        {\n            \"_id\": \"67d09a22582fcc32001660c3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-11T20:16:35.206Z\",\n            \"updatedAt\": \"2025-03-11T20:16:35.206Z\"\n        },\n        {\n            \"_id\": \"67d0484e06691db37265a76c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-11T14:27:27.347Z\",\n            \"updatedAt\": \"2025-03-11T14:27:27.347Z\"\n        },\n        {\n            \"_id\": \"67cf311e7be58f8e0b644d67\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T18:36:15.320Z\",\n            \"updatedAt\": \"2025-03-10T18:36:15.320Z\"\n        },\n        {\n            \"_id\": \"67cf2add989a9109bd902c9a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T18:09:33.511Z\",\n            \"updatedAt\": \"2025-03-10T18:09:33.511Z\"\n        },\n        {\n            \"_id\": \"67cf14c28f6c7328b73c97e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T16:35:14.502Z\",\n            \"updatedAt\": \"2025-03-10T16:35:14.502Z\"\n        },\n        {\n            \"_id\": \"67cef8ef3261b74b00ab56b5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T14:36:31.973Z\",\n            \"updatedAt\": \"2025-03-10T14:36:31.973Z\"\n        },\n        {\n            \"_id\": \"67cef8ee3261b74b00ab55ab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T14:36:31.653Z\",\n            \"updatedAt\": \"2025-03-10T14:36:31.653Z\"\n        },\n        {\n            \"_id\": \"67cee4f754986ca537193bfa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T13:11:20.069Z\",\n            \"updatedAt\": \"2025-03-10T13:11:20.069Z\"\n        },\n        {\n            \"_id\": \"67cee4f312aed52f0c6a58f1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T13:11:15.414Z\",\n            \"updatedAt\": \"2025-03-10T13:11:15.414Z\"\n        },\n        {\n            \"_id\": \"67cb23b1be113460f4a6a02a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-07T16:49:53.656Z\",\n            \"updatedAt\": \"2025-03-07T16:49:53.656Z\"\n        },\n        {\n            \"_id\": \"67cb0a5abeb4357692ebe146\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-07T15:01:47.278Z\",\n            \"updatedAt\": \"2025-03-07T15:01:47.278Z\"\n        },\n        {\n            \"_id\": \"67c9c9db5864373f49c1f7ea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T16:14:19.985Z\",\n            \"updatedAt\": \"2025-03-06T16:14:19.985Z\"\n        },\n        {\n            \"_id\": \"67c9be1b7e158e08d9eda50e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T15:24:11.806Z\",\n            \"updatedAt\": \"2025-03-06T15:24:11.806Z\"\n        },\n        {\n            \"_id\": \"67c97738bfabdce22ab0da36\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T10:21:44.976Z\",\n            \"updatedAt\": \"2025-03-06T10:21:44.976Z\"\n        },\n        {\n            \"_id\": \"67c975c6566a7fcb4c3c85f8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T10:15:34.757Z\",\n            \"updatedAt\": \"2025-03-06T10:15:34.757Z\"\n        },\n        {\n            \"_id\": \"67c8a7bd6c2d8b617628acd5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-05T19:36:30.449Z\",\n            \"updatedAt\": \"2025-03-05T19:36:30.449Z\"\n        },\n        {\n            \"_id\": \"67c87c8f7456c229ee5d308c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-05T16:32:16.139Z\",\n            \"updatedAt\": \"2025-03-05T16:32:16.139Z\"\n        },\n        {\n            \"_id\": \"67c8337ab0720292f9ea93d0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-05T11:20:26.717Z\",\n            \"updatedAt\": \"2025-03-05T11:20:26.717Z\"\n        },\n        {\n            \"_id\": \"67c73b1683f2693f67b81869\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T17:40:38.999Z\",\n            \"updatedAt\": \"2025-03-04T17:40:38.999Z\"\n        },\n        {\n            \"_id\": \"67c72c66fe02d4293f36b8fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-9.jpg?alt=media&token=da1bdd39-2b6f-44dd-a304-7cd905fc7567\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:37:58.527Z\",\n            \"updatedAt\": \"2025-03-04T16:38:09.693Z\"\n        },\n        {\n            \"_id\": \"67c7294574e8cad17b714def\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:24:38.200Z\",\n            \"updatedAt\": \"2025-03-04T16:24:38.200Z\"\n        },\n        {\n            \"_id\": \"67c7270c3d89fb96fe63aa50\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"664c7b0d7c5299569b8b74eb\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:15:08.247Z\",\n            \"updatedAt\": \"2025-03-04T16:15:08.247Z\"\n        },\n        {\n            \"_id\": \"67c6d221cfcd12e97e9944d3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T10:12:49.913Z\",\n            \"updatedAt\": \"2025-03-04T10:12:49.913Z\"\n        },\n        {\n            \"_id\": \"67c61be76f82876c7ada4d9b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T21:15:20.283Z\",\n            \"updatedAt\": \"2025-03-03T21:15:20.283Z\"\n        },\n        {\n            \"_id\": \"67c602149f3666a181ffa69e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T19:25:08.814Z\",\n            \"updatedAt\": \"2025-03-03T19:25:08.814Z\"\n        },\n        {\n            \"_id\": \"67c5e3da3b5508c825da256d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T17:16:10.886Z\",\n            \"updatedAt\": \"2025-03-03T17:16:10.886Z\"\n        },\n        {\n            \"_id\": \"67c5d8732ed75dbc148f222f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T16:27:31.886Z\",\n            \"updatedAt\": \"2025-03-03T16:27:31.886Z\"\n        },\n        {\n            \"_id\": \"67c5b6f721443a19b2f41c01\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T14:04:40.210Z\",\n            \"updatedAt\": \"2025-03-03T14:04:40.210Z\"\n        },\n        {\n            \"_id\": \"67c1d6c341f8ea70f7cc8600\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-28T15:31:16.488Z\",\n            \"updatedAt\": \"2025-02-28T15:31:16.488Z\"\n        },\n        {\n            \"_id\": \"67c17d8bcf5d901a766bb5f1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-28T09:10:37.524Z\",\n            \"updatedAt\": \"2025-02-28T09:10:37.524Z\"\n        },\n        {\n            \"_id\": \"67c0ba5144b2794b18314bb5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T19:17:37.802Z\",\n            \"updatedAt\": \"2025-02-27T19:17:37.802Z\"\n        },\n        {\n            \"_id\": \"67c0a619787dc75f72e24632\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T17:51:22.428Z\",\n            \"updatedAt\": \"2025-02-27T17:51:22.428Z\"\n        },\n        {\n            \"_id\": \"67c086941453ad8eb49ebb4c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T15:36:52.531Z\",\n            \"updatedAt\": \"2025-02-27T15:36:52.531Z\"\n        },\n        {\n            \"_id\": \"67c0670da2852d020d688514\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T13:22:22.510Z\",\n            \"updatedAt\": \"2025-02-27T13:22:22.510Z\"\n        },\n        {\n            \"_id\": \"67c04ec4bbaa1ac9d40d412b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T11:38:45.320Z\",\n            \"updatedAt\": \"2025-02-27T11:38:45.320Z\"\n        },\n        {\n            \"_id\": \"67c04e990e939a3b9a8f0d13\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T11:38:01.856Z\",\n            \"updatedAt\": \"2025-02-27T11:38:01.856Z\"\n        },\n        {\n            \"_id\": \"67c04d85fce40b7ca942d61e\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T11:33:25.503Z\",\n            \"updatedAt\": \"2025-02-27T11:33:25.503Z\"\n        },\n        {\n            \"_id\": \"67c03ecdd56a099cf92e87fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T10:30:37.984Z\",\n            \"updatedAt\": \"2025-02-27T10:30:52.429Z\"\n        },\n        {\n            \"_id\": \"67c03e7bd56a099cf92e84d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626e94b4a167f1aad15a1554%2F1657198879608%2F1657198884322%2Fone%20on%20one%20meeting%20guidelines.png?alt=media&token=7edfe4d8-f03d-4949-8222-5c363e692500\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"1:1 Meeting Guidelines\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T10:29:15.693Z\",\n            \"updatedAt\": \"2025-02-27T10:30:08.686Z\"\n        },\n        {\n            \"_id\": \"6691020bef0be53ed8373a72\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Foundation Certification Program\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-12T10:14:35.707Z\",\n            \"updatedAt\": \"2025-02-26T20:22:27.294Z\"\n        },\n        {\n            \"_id\": \"67bf768aab80d0f2abe5e269\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T20:16:10.882Z\",\n            \"updatedAt\": \"2025-02-26T20:16:10.882Z\"\n        },\n        {\n            \"_id\": \"67bf3e0df2a505ebcf05cbc1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T16:15:09.581Z\",\n            \"updatedAt\": \"2025-02-26T16:15:09.581Z\"\n        },\n        {\n            \"_id\": \"67bf3c622d6aeeba09d68d08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T16:08:03.391Z\",\n            \"updatedAt\": \"2025-02-26T16:08:03.391Z\"\n        },\n        {\n            \"_id\": \"67bf2f51e0eb0e6635ad49fc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Leadership Tala\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T15:12:17.141Z\",\n            \"updatedAt\": \"2025-02-26T15:13:53.639Z\"\n        },\n        {\n            \"_id\": \"67bf2abe535c8df23feed7d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T14:52:47.507Z\",\n            \"updatedAt\": \"2025-02-26T14:52:47.507Z\"\n        },\n        {\n            \"_id\": \"67bf0d50e2fa9a48a43b55f9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:47:12.918Z\",\n            \"updatedAt\": \"2025-02-26T12:47:37.892Z\"\n        },\n        {\n            \"_id\": \"67bf02f971a609dc7fda44e1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:03:06.583Z\",\n            \"updatedAt\": \"2025-02-26T12:03:06.583Z\"\n        },\n        {\n            \"_id\": \"67bf02f0c5743a99b0f73d22\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011.jpg?alt=media&token=f61ab96f-d53a-4b53-a10c-98fd1bcafded\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:02:56.599Z\",\n            \"updatedAt\": \"2025-02-26T12:02:56.599Z\"\n        },\n        {\n            \"_id\": \"67bf02e1bc3d1485e409cbde\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-10.jpg?alt=media&token=e7641a47-e567-428a-9943-3158788bf034\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:02:41.060Z\",\n            \"updatedAt\": \"2025-02-26T12:02:41.060Z\"\n        },\n        {\n            \"_id\": \"67bdc24a29450879c1053d73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-25T13:14:51.037Z\",\n            \"updatedAt\": \"2025-02-25T13:14:51.037Z\"\n        },\n        {\n            \"_id\": \"67bdb5177bbdc69577fa3122\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-25T12:18:31.960Z\",\n            \"updatedAt\": \"2025-02-25T12:18:31.960Z\"\n        },\n        {\n            \"_id\": \"67bdb4980e7fa63b2ce3b196\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-25T12:16:25.030Z\",\n            \"updatedAt\": \"2025-02-25T12:16:25.030Z\"\n        },\n        {\n            \"_id\": \"67bca83b11c11d4fa486fc4d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T17:11:24.485Z\",\n            \"updatedAt\": \"2025-02-24T17:11:24.485Z\"\n        },\n        {\n            \"_id\": \"67bc762707cb33a1c699ca6f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-10.jpg?alt=media&token=2f77c06e-bab8-4260-b3d8-d55a57ed5a4c\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:37:43.224Z\",\n            \"updatedAt\": \"2025-02-24T13:37:43.224Z\"\n        },\n        {\n            \"_id\": \"67bc73c8bacfdd71e5445916\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"XYZ \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:27:36.712Z\",\n            \"updatedAt\": \"2025-02-24T13:32:22.369Z\"\n        },\n        {\n            \"_id\": \"67bc707404351d48cec51c53\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"659419cba05af00009a961e1\",\n            \"title\": \"Test course Colette\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:13:24.569Z\",\n            \"updatedAt\": \"2025-02-24T13:14:45.668Z\"\n        },\n        {\n            \"_id\": \"67bc4769b2c86cfe077d83c1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T10:18:18.077Z\",\n            \"updatedAt\": \"2025-02-24T10:18:18.077Z\"\n        },\n        {\n            \"_id\": \"67b88e689635cf33b2bd4630\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T14:32:09.343Z\",\n            \"updatedAt\": \"2025-02-21T14:32:09.343Z\"\n        },\n        {\n            \"_id\": \"67b8862ec13c85c270299cba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T13:57:03.433Z\",\n            \"updatedAt\": \"2025-02-21T13:57:03.433Z\"\n        },\n        {\n            \"_id\": \"67b8712ad2ee815e51feec6e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T12:27:22.826Z\",\n            \"updatedAt\": \"2025-02-21T12:28:43.605Z\"\n        },\n        {\n            \"_id\": \"67b858c2c8ec7b9d78cb63ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T10:43:15.242Z\",\n            \"updatedAt\": \"2025-02-21T10:43:15.242Z\"\n        },\n        {\n            \"_id\": \"67b83e4bbc3e49def7594b05\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T08:50:20.320Z\",\n            \"updatedAt\": \"2025-02-21T08:50:20.320Z\"\n        },\n        {\n            \"_id\": \"67b764a82e266fae8efc9f3b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T17:21:44.716Z\",\n            \"updatedAt\": \"2025-02-20T17:21:44.716Z\"\n        },\n        {\n            \"_id\": \"67b757cccc3322b947c54b3c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T16:26:53.485Z\",\n            \"updatedAt\": \"2025-02-20T16:26:53.485Z\"\n        },\n        {\n            \"_id\": \"67b7122a1a0e386c2691eb1c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:29:46.319Z\",\n            \"updatedAt\": \"2025-02-20T11:29:46.319Z\"\n        },\n        {\n            \"_id\": \"67b7121d469ced346f6087ca\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:29:33.187Z\",\n            \"updatedAt\": \"2025-02-20T11:29:36.048Z\"\n        },\n        {\n            \"_id\": \"67b70faea0b242b2071d0c2b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:19:11.321Z\",\n            \"updatedAt\": \"2025-02-20T11:19:11.321Z\"\n        },\n        {\n            \"_id\": \"67b706b995a2ce4fec6c85aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-7.jpg?alt=media&token=0de3e2a9-e2db-44fa-a43c-f5bee8c92fb5\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T10:40:57.856Z\",\n            \"updatedAt\": \"2025-02-20T10:44:15.365Z\"\n        },\n        {\n            \"_id\": \"65083095d00c7800090b9811\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SCORM example\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T11:12:21.030Z\",\n            \"updatedAt\": \"2025-02-19T16:55:17.064Z\"\n        },\n        {\n            \"_id\": \"67b5f61fcf3005ccec6adda6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-19T15:17:52.410Z\",\n            \"updatedAt\": \"2025-02-19T15:17:52.410Z\"\n        },\n        {\n            \"_id\": \"67b5dbd603cfb9697ec0a430\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-19T13:25:43.226Z\",\n            \"updatedAt\": \"2025-02-19T13:25:43.226Z\"\n        },\n        {\n            \"_id\": \"67b5c010d9896d7863f847aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-19T11:27:13.008Z\",\n            \"updatedAt\": \"2025-02-19T11:37:30.224Z\"\n        },\n        {\n            \"_id\": \"67b4ce4accf9c87d46799d28\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T18:15:39.126Z\",\n            \"updatedAt\": \"2025-02-18T18:15:39.126Z\"\n        },\n        {\n            \"_id\": \"67b4a585d7c39613cd0cb399\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T15:21:42.105Z\",\n            \"updatedAt\": \"2025-02-18T15:21:42.105Z\"\n        },\n        {\n            \"_id\": \"67b499368b3cf193f114d6df\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T14:29:10.832Z\",\n            \"updatedAt\": \"2025-02-18T14:29:10.832Z\"\n        },\n        {\n            \"_id\": \"67b495a4042eb57a951ec226\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T14:13:56.667Z\",\n            \"updatedAt\": \"2025-02-18T14:13:56.667Z\"\n        },\n        {\n            \"_id\": \"67b47b2208c6a7f3a835a67d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T12:20:50.980Z\",\n            \"updatedAt\": \"2025-02-18T12:20:50.980Z\"\n        },\n        {\n            \"_id\": \"67b388c0b185ad5dac973775\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-10.jpg?alt=media&token=4b8d36aa-5629-4df3-a5bb-55fd32c076bc\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"asdfadsfdas\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-17T19:06:40.365Z\",\n            \"updatedAt\": \"2025-02-17T19:06:40.815Z\"\n        },\n        {\n            \"_id\": \"67b338c9b4f09966f6d5fc1b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-17T13:25:30.637Z\",\n            \"updatedAt\": \"2025-02-17T13:25:30.637Z\"\n        },\n        {\n            \"_id\": \"67ae292d59ee6ac781e07c7f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T17:17:34.323Z\",\n            \"updatedAt\": \"2025-02-13T17:17:34.323Z\"\n        },\n        {\n            \"_id\": \"67ae291202fe2c3cd459333d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T17:17:07.120Z\",\n            \"updatedAt\": \"2025-02-13T17:17:07.120Z\"\n        },\n        {\n            \"_id\": \"67ae100ccf90e4cf9dd7354b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T15:30:20.717Z\",\n            \"updatedAt\": \"2025-02-13T15:30:20.717Z\"\n        },\n        {\n            \"_id\": \"67ae0c5537ea5c61738ba333\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T15:14:30.179Z\",\n            \"updatedAt\": \"2025-02-13T15:14:30.179Z\"\n        },\n        {\n            \"_id\": \"67adeeea7feb70128c1c40de\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Feb 13 test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T13:08:58.440Z\",\n            \"updatedAt\": \"2025-02-13T13:24:21.648Z\"\n        },\n        {\n            \"_id\": \"67ade9935127f580fce1bd56\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-6.jpg?alt=media&token=836de927-f967-4d4c-9a53-d5f21b490b72\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T12:46:11.952Z\",\n            \"updatedAt\": \"2025-02-13T12:46:26.706Z\"\n        },\n        {\n            \"_id\": \"67ade98cdb73bdd7d562b430\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"tets\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T12:46:04.841Z\",\n            \"updatedAt\": \"2025-02-13T12:46:11.285Z\"\n        },\n        {\n            \"_id\": \"67ade71d02bfdb0afea35d6b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T12:35:41.738Z\",\n            \"updatedAt\": \"2025-02-13T12:35:41.738Z\"\n        },\n        {\n            \"_id\": \"67adb6b9c0c79f3a6281852e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"meeting test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:09:13.481Z\",\n            \"updatedAt\": \"2025-02-13T09:28:52.635Z\"\n        },\n        {\n            \"_id\": \"67adb9ed01ae5b4206fc4079\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test 2\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:22:53.699Z\",\n            \"updatedAt\": \"2025-02-13T09:24:51.102Z\"\n        },\n        {\n            \"_id\": \"67acf6720f8abbe3c6cb5ef4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-12T19:28:51.625Z\",\n            \"updatedAt\": \"2025-02-12T19:28:51.625Z\"\n        },\n        {\n            \"_id\": \"67ab96556eef9a07a8931cba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T18:26:31.204Z\",\n            \"updatedAt\": \"2025-02-11T18:26:31.204Z\"\n        },\n        {\n            \"_id\": \"67ab5fc2c408fa8836571e90\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:33:38.750Z\",\n            \"updatedAt\": \"2025-02-11T14:33:38.750Z\"\n        },\n        {\n            \"_id\": \"67ab5e7a6b51151f0be2d686\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:28:10.740Z\",\n            \"updatedAt\": \"2025-02-11T14:30:01.808Z\"\n        },\n        {\n            \"_id\": \"67ab5b6454144c71f342c003\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:15:01.431Z\",\n            \"updatedAt\": \"2025-02-11T14:15:01.431Z\"\n        },\n        {\n            \"_id\": \"67ab252f8fe6a60530b83610\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:23:44.195Z\",\n            \"updatedAt\": \"2025-02-11T10:23:44.195Z\"\n        },\n        {\n            \"_id\": \"67ab2309d09cc5f54dac89fd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:14:33.822Z\",\n            \"updatedAt\": \"2025-02-11T10:14:33.822Z\"\n        },\n        {\n            \"_id\": \"67ab22f6d7fc193374ffbee4\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:14:14.391Z\",\n            \"updatedAt\": \"2025-02-11T10:14:14.391Z\"\n        },\n        {\n            \"_id\": \"67aa1a448b801135f6ca8762\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T15:24:53.578Z\",\n            \"updatedAt\": \"2025-02-10T15:24:53.578Z\"\n        },\n        {\n            \"_id\": \"67aa19d6102ab187dec4eea1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T15:23:02.575Z\",\n            \"updatedAt\": \"2025-02-10T15:23:14.731Z\"\n        },\n        {\n            \"_id\": \"67aa1209254fdaa36091ccb9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T14:49:48.274Z\",\n            \"updatedAt\": \"2025-02-10T14:49:48.274Z\"\n        },\n        {\n            \"_id\": \"67a9f105a34ed423c05d1da6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T12:28:54.101Z\",\n            \"updatedAt\": \"2025-02-10T12:28:54.101Z\"\n        },\n        {\n            \"_id\": \"67a9f03b2553b0e363c83ed7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T12:25:32.842Z\",\n            \"updatedAt\": \"2025-02-10T12:25:51.042Z\"\n        },\n        {\n            \"_id\": \"67a62436dce637e090e9f1a8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-07T15:18:15.552Z\",\n            \"updatedAt\": \"2025-02-07T15:18:15.552Z\"\n        },\n        {\n            \"_id\": \"67a50d871f968ac35aa83bf1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-06T19:29:11.423Z\",\n            \"updatedAt\": \"2025-02-06T19:29:11.423Z\"\n        },\n        {\n            \"_id\": \"67a4b7897359731763e67ea7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-06T13:22:17.696Z\",\n            \"updatedAt\": \"2025-02-06T13:22:32.079Z\"\n        },\n        {\n            \"_id\": \"67a4919de58eae8b50d2ebfa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-06T10:40:29.954Z\",\n            \"updatedAt\": \"2025-02-06T10:40:29.954Z\"\n        },\n        {\n            \"_id\": \"67a3ac84cc4123d1a57158b7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T18:23:01.488Z\",\n            \"updatedAt\": \"2025-02-05T18:23:01.488Z\"\n        },\n        {\n            \"_id\": \"67a3a7bf973d99669c433d4e\",\n            \"photoUrl\": \"https://unsplash.com/photos/iDGwopsIOI0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxzZWN1cml0eSUyMHxlbnwwfDB8fHwxNjU3MTA3MzYy\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"Laptops MDM enrollment\",\n            \"description\": \"This course covers the installation of MDM on workstations (Windows and Mac). It should be part of every user onboarding process.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T18:02:39.757Z\",\n            \"updatedAt\": \"2025-02-05T18:02:39.757Z\"\n        },\n        {\n            \"_id\": \"67a39f2aa156a1e1b574d714\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T17:26:03.208Z\",\n            \"updatedAt\": \"2025-02-05T17:26:03.208Z\"\n        },\n        {\n            \"_id\": \"67a33a066979eede5d0604b7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T10:14:31.104Z\",\n            \"updatedAt\": \"2025-02-05T10:14:31.104Z\"\n        },\n        {\n            \"_id\": \"67a26b296ce4867f14b0acf9\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T19:31:53.073Z\",\n            \"updatedAt\": \"2025-02-04T20:00:29.413Z\"\n        },\n        {\n            \"_id\": \"67a2699c412ce09aad9b9a53\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T19:25:16.876Z\",\n            \"updatedAt\": \"2025-02-04T19:25:16.876Z\"\n        },\n        {\n            \"_id\": \"67a23283f6638df0e0303892\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T15:30:12.761Z\",\n            \"updatedAt\": \"2025-02-04T15:30:21.220Z\"\n        },\n        {\n            \"_id\": \"67a2178c8c42e8d34ace6016\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T13:35:09.263Z\",\n            \"updatedAt\": \"2025-02-04T13:35:23.921Z\"\n        },\n        {\n            \"_id\": \"67a204c0e55a4c59dae33f1b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T12:14:57.495Z\",\n            \"updatedAt\": \"2025-02-04T12:14:57.495Z\"\n        },\n        {\n            \"_id\": \"67a2049d05f2e5629b623192\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-8.jpg?alt=media&token=ecfb6121-c7c7-4e7c-86cb-402c5fa14515\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T12:14:21.884Z\",\n            \"updatedAt\": \"2025-02-04T12:14:21.884Z\"\n        },\n        {\n            \"_id\": \"67a1fa2d05f2e5629b619b33\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T11:29:50.199Z\",\n            \"updatedAt\": \"2025-02-04T11:30:03.935Z\"\n        },\n        {\n            \"_id\": \"67a1fa0a09c80bbe7c032e71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T11:29:15.357Z\",\n            \"updatedAt\": \"2025-02-04T11:29:15.357Z\"\n        },\n        {\n            \"_id\": \"67a13bf13981034d10532175\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-03T21:58:09.892Z\",\n            \"updatedAt\": \"2025-02-03T21:58:09.892Z\"\n        },\n        {\n            \"_id\": \"67a0fd2b764eb87c117f1b39\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-03T17:30:19.805Z\",\n            \"updatedAt\": \"2025-02-03T17:30:19.805Z\"\n        },\n        {\n            \"_id\": \"679ca61f4101bca622643348\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-31T10:29:52.437Z\",\n            \"updatedAt\": \"2025-01-31T10:29:52.437Z\"\n        },\n        {\n            \"_id\": \"679bc10fa95daa1df47d0203\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T18:12:32.488Z\",\n            \"updatedAt\": \"2025-01-30T18:12:32.488Z\"\n        },\n        {\n            \"_id\": \"679bbdf00e20719f7d5e8c85\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T17:59:12.678Z\",\n            \"updatedAt\": \"2025-01-30T17:59:12.678Z\"\n        },\n        {\n            \"_id\": \"679bb99020cfa23bcc56c3f7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T17:40:33.299Z\",\n            \"updatedAt\": \"2025-01-30T17:40:33.299Z\"\n        },\n        {\n            \"_id\": \"679b97faa969ad58e78cae9c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Advisor Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T15:17:15.283Z\",\n            \"updatedAt\": \"2025-01-30T15:17:31.173Z\"\n        },\n        {\n            \"_id\": \"679b5ab0c2d4d527093692c3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T10:55:45.121Z\",\n            \"updatedAt\": \"2025-01-30T10:55:45.121Z\"\n        },\n        {\n            \"_id\": \"679b5056b84f784ca7bc2b87\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T10:11:35.352Z\",\n            \"updatedAt\": \"2025-01-30T10:11:35.352Z\"\n        },\n        {\n            \"_id\": \"679a631aff088766ea81b52f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-29T17:19:22.956Z\",\n            \"updatedAt\": \"2025-01-29T17:19:22.956Z\"\n        },\n        {\n            \"_id\": \"679a57c332a55d3dcbe1871e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-29T16:30:59.605Z\",\n            \"updatedAt\": \"2025-01-29T16:30:59.605Z\"\n        },\n        {\n            \"_id\": \"67992fa1c18f918746e5f644\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T19:27:29.599Z\",\n            \"updatedAt\": \"2025-01-28T19:27:29.599Z\"\n        },\n        {\n            \"_id\": \"67992f38ae00648ab711f2db\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T19:25:45.166Z\",\n            \"updatedAt\": \"2025-01-28T19:25:45.166Z\"\n        },\n        {\n            \"_id\": \"6798de9458d56326faa9e19f\",\n            \"photoUrl\": \"https://unsplash.com/photos/pb5w9WU1goA/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHxzYXRpc2ZhY3Rpb258ZW58MHwwfHx8MTY3Mzc3NTQ4MQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Post Training Evaluation Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T13:41:40.513Z\",\n            \"updatedAt\": \"2025-01-28T13:41:40.513Z\"\n        },\n        {\n            \"_id\": \"6798dd62ae546f8bb075a471\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T13:36:36.674Z\",\n            \"updatedAt\": \"2025-01-28T13:39:46.260Z\"\n        },\n        {\n            \"_id\": \"6798ceded5d9df168de49b72\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T12:34:38.999Z\",\n            \"updatedAt\": \"2025-01-28T12:34:38.999Z\"\n        },\n        {\n            \"_id\": \"6798c0c85100d0d033eba646\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T11:34:32.711Z\",\n            \"updatedAt\": \"2025-01-28T11:34:32.711Z\"\n        },\n        {\n            \"_id\": \"6798be95efcf4b92505197d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T11:25:09.981Z\",\n            \"updatedAt\": \"2025-01-28T11:25:09.981Z\"\n        },\n        {\n            \"_id\": \"6798b6f7ece5f877d7358b3d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T10:52:39.993Z\",\n            \"updatedAt\": \"2025-01-28T10:52:39.993Z\"\n        },\n        {\n            \"_id\": \"6797cf3353bd1ddef5ec03d5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T18:23:47.821Z\",\n            \"updatedAt\": \"2025-01-27T18:23:47.821Z\"\n        },\n        {\n            \"_id\": \"6797b4cded70e27d94e3a694\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T16:31:10.232Z\",\n            \"updatedAt\": \"2025-01-27T16:31:10.232Z\"\n        },\n        {\n            \"_id\": \"6797b3225afc231c6f1fed0a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T16:24:02.638Z\",\n            \"updatedAt\": \"2025-01-27T16:24:02.638Z\"\n        },\n        {\n            \"_id\": \"6797afa048ec15be78f3854d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T16:09:04.865Z\",\n            \"updatedAt\": \"2025-01-27T16:09:04.865Z\"\n        },\n        {\n            \"_id\": \"67979911be119693a725190e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T14:32:50.157Z\",\n            \"updatedAt\": \"2025-01-27T14:32:50.157Z\"\n        },\n        {\n            \"_id\": \"679798bb5afc231c6f1dcf14\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Lunch & Learn \",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T14:31:23.393Z\",\n            \"updatedAt\": \"2025-01-27T14:31:35.753Z\"\n        },\n        {\n            \"_id\": \"67977bbf6b695edb784fa81d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T12:27:43.921Z\",\n            \"updatedAt\": \"2025-01-27T12:27:43.921Z\"\n        },\n        {\n            \"_id\": \"6797636079a5da0973515464\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T10:43:45.007Z\",\n            \"updatedAt\": \"2025-01-27T10:43:45.007Z\"\n        },\n        {\n            \"_id\": \"679395e9679910d7a3952c8d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-24T13:30:18.188Z\",\n            \"updatedAt\": \"2025-01-24T13:30:18.188Z\"\n        },\n        {\n            \"_id\": \"679395b30816f7de14b3929f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-24T13:29:23.461Z\",\n            \"updatedAt\": \"2025-01-24T13:29:23.461Z\"\n        },\n        {\n            \"_id\": \"67926e6c0816f7de14acbd43\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T16:29:32.732Z\",\n            \"updatedAt\": \"2025-01-23T16:29:32.732Z\"\n        },\n        {\n            \"_id\": \"67926e6255986bae9287049c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T16:29:23.119Z\",\n            \"updatedAt\": \"2025-01-23T16:29:23.119Z\"\n        },\n        {\n            \"_id\": \"6792586b6902668c34adac22\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T14:55:39.852Z\",\n            \"updatedAt\": \"2025-01-23T14:55:39.852Z\"\n        },\n        {\n            \"_id\": \"67923f895e3ea4db611a6db4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Fabuwood Event\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T13:09:29.559Z\",\n            \"updatedAt\": \"2025-01-23T13:09:30.122Z\"\n        },\n        {\n            \"_id\": \"679211c67bf29c709505aa8a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:54:15.070Z\",\n            \"updatedAt\": \"2025-01-23T09:54:15.070Z\"\n        },\n        {\n            \"_id\": \"6792112c00384678cc180f81\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Sales 101 \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:51:40.252Z\",\n            \"updatedAt\": \"2025-01-23T09:51:51.449Z\"\n        },\n        {\n            \"_id\": \"67920eb99616a9ec14a17433\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:41:13.526Z\",\n            \"updatedAt\": \"2025-01-23T09:41:13.526Z\"\n        },\n        {\n            \"_id\": \"67920b22cf6d83a5a254e320\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:25:54.683Z\",\n            \"updatedAt\": \"2025-01-23T09:28:11.144Z\"\n        },\n        {\n            \"_id\": \"679145d6cea28905f6f0493d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-22T19:24:07.466Z\",\n            \"updatedAt\": \"2025-01-22T19:24:07.466Z\"\n        },\n        {\n            \"_id\": \"6790e4839a95c12db2db6f46\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-22T12:28:52.427Z\",\n            \"updatedAt\": \"2025-01-22T12:28:52.427Z\"\n        },\n        {\n            \"_id\": \"678fcb736a3fa8a84a974aad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T16:29:40.378Z\",\n            \"updatedAt\": \"2025-01-21T16:29:40.378Z\"\n        },\n        {\n            \"_id\": \"678fc38c1f8502e2d6c410dc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Video Jet AE training \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T15:55:56.710Z\",\n            \"updatedAt\": \"2025-01-21T16:01:32.237Z\"\n        },\n        {\n            \"_id\": \"678f76e426069dfb67660fe9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T10:28:53.303Z\",\n            \"updatedAt\": \"2025-01-21T10:28:53.303Z\"\n        },\n        {\n            \"_id\": \"678f72678b51fe6ed358ff3a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T10:09:43.893Z\",\n            \"updatedAt\": \"2025-01-21T10:09:43.893Z\"\n        },\n        {\n            \"_id\": \"678e84e292c5566d7ab5b2ab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:16:19.269Z\",\n            \"updatedAt\": \"2025-01-20T17:16:19.269Z\"\n        },\n        {\n            \"_id\": \"678e8464513082de6ca90565\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:14:12.532Z\",\n            \"updatedAt\": \"2025-01-20T17:14:12.532Z\"\n        },\n        {\n            \"_id\": \"678e834d513082de6ca8f87a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:09:34.197Z\",\n            \"updatedAt\": \"2025-01-20T17:09:34.197Z\"\n        },\n        {\n            \"_id\": \"678e833a80b69d87054d5f71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626e94b4a167f1aad15a1554%2F1657198879608%2F1657198884322%2Fone%20on%20one%20meeting%20guidelines.png?alt=media&token=7edfe4d8-f03d-4949-8222-5c363e692500\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"1:1 Meeting Guidelines\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:09:15.044Z\",\n            \"updatedAt\": \"2025-01-20T17:09:15.044Z\"\n        },\n        {\n            \"_id\": \"678e6e8b80b69d87054b9343\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A More Effective Communicator\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T15:41:00.363Z\",\n            \"updatedAt\": \"2025-01-20T15:41:00.363Z\"\n        },\n        {\n            \"_id\": \"678e44567116a1517bd3adf5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T12:40:55.683Z\",\n            \"updatedAt\": \"2025-01-20T12:40:55.683Z\"\n        },\n        {\n            \"_id\": \"678e242710f966f93e4be098\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T10:23:36.423Z\",\n            \"updatedAt\": \"2025-01-20T10:23:36.423Z\"\n        },\n        {\n            \"_id\": \"678a4e8d2533803faafcb08a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-17T12:35:25.731Z\",\n            \"updatedAt\": \"2025-01-17T12:35:25.731Z\"\n        },\n        {\n            \"_id\": \"67895489e688c5770e66585d\",\n            \"photoUrl\": \"https://unsplash.com/photos/m_HRfLhgABo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb2RlfGVufDB8MHx8fDE2NzUzMzAwODI\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Welcome to the R&D Team\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T18:48:42.466Z\",\n            \"updatedAt\": \"2025-01-16T18:48:42.466Z\"\n        },\n        {\n            \"_id\": \"678931f6e86aa19618d9f3d5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T16:21:11.207Z\",\n            \"updatedAt\": \"2025-01-16T16:21:11.207Z\"\n        },\n        {\n            \"_id\": \"678923364c291da75c7a3a43\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T15:18:15.125Z\",\n            \"updatedAt\": \"2025-01-16T15:18:15.125Z\"\n        },\n        {\n            \"_id\": \"678916b28e875419cdd1320d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T14:24:51.441Z\",\n            \"updatedAt\": \"2025-01-16T14:24:51.441Z\"\n        },\n        {\n            \"_id\": \"6788dd935f0340ca0b6f469b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-7.jpg?alt=media&token=0de3e2a9-e2db-44fa-a43c-f5bee8c92fb5\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:21:07.099Z\",\n            \"updatedAt\": \"2025-01-16T10:21:07.099Z\"\n        },\n        {\n            \"_id\": \"6788dd7a28d0ead5216bc220\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:20:42.466Z\",\n            \"updatedAt\": \"2025-01-16T10:20:57.214Z\"\n        },\n        {\n            \"_id\": \"6788dd701f07d35cd25e7ed7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:20:32.412Z\",\n            \"updatedAt\": \"2025-01-16T10:20:32.412Z\"\n        },\n        {\n            \"_id\": \"6788dd05d1e0f0576ca38357\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:18:46.230Z\",\n            \"updatedAt\": \"2025-01-16T10:18:46.230Z\"\n        },\n        {\n            \"_id\": \"6788046a464394fa8462802f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-15T18:54:35.253Z\",\n            \"updatedAt\": \"2025-01-15T18:54:35.253Z\"\n        },\n        {\n            \"_id\": \"6787dd3ce532c8a84393aac5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-15T16:07:25.059Z\",\n            \"updatedAt\": \"2025-01-15T16:07:25.059Z\"\n        },\n        {\n            \"_id\": \"6786c1b36c7f42e7b9241951\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T19:57:40.250Z\",\n            \"updatedAt\": \"2025-01-14T19:57:40.250Z\"\n        },\n        {\n            \"_id\": \"6786ab600a045935c18e439f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T18:22:25.465Z\",\n            \"updatedAt\": \"2025-01-14T18:22:25.465Z\"\n        },\n        {\n            \"_id\": \"6786ab076c7f42e7b923c91b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T18:20:55.781Z\",\n            \"updatedAt\": \"2025-01-14T18:20:55.781Z\"\n        },\n        {\n            \"_id\": \"6786a90d642474e64e6e2347\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T18:12:30.261Z\",\n            \"updatedAt\": \"2025-01-14T18:12:30.261Z\"\n        },\n        {\n            \"_id\": \"67869d2e3627765dd28df7f9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T17:21:50.601Z\",\n            \"updatedAt\": \"2025-01-14T17:21:50.601Z\"\n        },\n        {\n            \"_id\": \"6786931d6b6143974cd176dc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T16:38:54.395Z\",\n            \"updatedAt\": \"2025-01-14T16:38:54.395Z\"\n        },\n        {\n            \"_id\": \"67867402538991c1b237ea0c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T14:26:10.731Z\",\n            \"updatedAt\": \"2025-01-14T14:26:10.731Z\"\n        },\n        {\n            \"_id\": \"6786582edfe7cc1f5679a490\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T12:27:27.245Z\",\n            \"updatedAt\": \"2025-01-14T12:27:27.245Z\"\n        },\n        {\n            \"_id\": \"6785403b52856c2176f3adb1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T16:33:00.078Z\",\n            \"updatedAt\": \"2025-01-13T16:33:00.078Z\"\n        },\n        {\n            \"_id\": \"67850ae68ce07f243ad1060d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T12:45:39.603Z\",\n            \"updatedAt\": \"2025-01-13T12:45:39.603Z\"\n        },\n        {\n            \"_id\": \"6508301cc569e80009c4b627\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SCORM Example - Journey\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-4.jpg?alt=media&token=7a6d3672-4d6c-4cc2-a1f7-4f94714fee5a\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T11:10:20.769Z\",\n            \"updatedAt\": \"2025-01-13T12:44:45.944Z\"\n        },\n        {\n            \"_id\": \"678507a6d4e5a3d66e98b5e9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T12:31:35.141Z\",\n            \"updatedAt\": \"2025-01-13T12:31:35.141Z\"\n        },\n        {\n            \"_id\": \"6784dd362798f21ae553b97b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T09:30:30.608Z\",\n            \"updatedAt\": \"2025-01-13T09:34:19.175Z\"\n        },\n        {\n            \"_id\": \"67811161de048de29688ba94\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-10T12:24:02.224Z\",\n            \"updatedAt\": \"2025-01-10T12:24:02.224Z\"\n        },\n        {\n            \"_id\": \"67801ce674de00b9e0114d50\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T19:00:55.377Z\",\n            \"updatedAt\": \"2025-01-09T19:00:55.377Z\"\n        },\n        {\n            \"_id\": \"678018ae74de00b9e0113240\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T18:42:55.800Z\",\n            \"updatedAt\": \"2025-01-09T18:42:55.800Z\"\n        },\n        {\n            \"_id\": \"67800b8a7b9ca5b4f62008cf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T17:46:50.677Z\",\n            \"updatedAt\": \"2025-01-09T17:46:50.677Z\"\n        },\n        {\n            \"_id\": \"677ffa6991ce9ca728a9a391\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T16:33:46.615Z\",\n            \"updatedAt\": \"2025-01-09T16:33:46.615Z\"\n        },\n        {\n            \"_id\": \"677fc79d7da2f61712078c04\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Nayax - Lunch & Learn \",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T12:57:01.637Z\",\n            \"updatedAt\": \"2025-01-09T12:57:02.172Z\"\n        },\n        {\n            \"_id\": \"64bfcdb27e2e7a00087981e3\",\n            \"standalone\": true,\n            \"title\": \"Employee Engagement Survey \",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"type\": \"survey\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-25T13:27:14.757Z\",\n            \"updatedAt\": \"2025-01-09T12:55:34.400Z\"\n        },\n        {\n            \"_id\": \"677fc7360976d1d354c0e7c4\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T12:55:18.054Z\",\n            \"updatedAt\": \"2025-01-09T12:55:18.054Z\"\n        },\n        {\n            \"_id\": \"677fc3b2830b2063957ce061\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T12:40:18.936Z\",\n            \"updatedAt\": \"2025-01-09T12:40:18.936Z\"\n        },\n        {\n            \"_id\": \"677fa767916dc693a2d94674\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T10:39:36.199Z\",\n            \"updatedAt\": \"2025-01-09T10:39:36.199Z\"\n        },\n        {\n            \"_id\": \"677fa767d08ebc5d552f0dbc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T10:39:35.903Z\",\n            \"updatedAt\": \"2025-01-09T10:39:35.903Z\"\n        },\n        {\n            \"_id\": \"677fa5f9034c90b7d8d78822\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T10:33:29.892Z\",\n            \"updatedAt\": \"2025-01-09T10:33:29.892Z\"\n        },\n        {\n            \"_id\": \"677ea7587664448709eee149\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-08T16:27:05.191Z\",\n            \"updatedAt\": \"2025-01-08T16:27:05.191Z\"\n        },\n        {\n            \"_id\": \"677e94b3d3529ba1d94379aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-08T15:07:31.715Z\",\n            \"updatedAt\": \"2025-01-08T15:07:31.715Z\"\n        },\n        {\n            \"_id\": \"677e5d23e0d6cc0919c1f55e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-08T11:10:27.913Z\",\n            \"updatedAt\": \"2025-01-08T11:10:27.913Z\"\n        },\n        {\n            \"_id\": \"677d78b12912b781da83f9eb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T18:55:46.562Z\",\n            \"updatedAt\": \"2025-01-07T18:55:46.562Z\"\n        },\n        {\n            \"_id\": \"677d71e57904f183397f5e90\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T18:26:46.360Z\",\n            \"updatedAt\": \"2025-01-07T18:26:46.360Z\"\n        },\n        {\n            \"_id\": \"677d59a8dd05f121baa7449c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T16:43:21.551Z\",\n            \"updatedAt\": \"2025-01-07T16:43:21.551Z\"\n        },\n        {\n            \"_id\": \"677d5526f40283627d107c18\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T16:24:07.453Z\",\n            \"updatedAt\": \"2025-01-07T16:24:07.453Z\"\n        },\n        {\n            \"_id\": \"650961ea32aea40008fac850\",\n            \"standalone\": true,\n            \"title\": \"SDR Onboarding \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-19T08:55:07.450Z\",\n            \"updatedAt\": \"2025-01-07T15:56:06.281Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"677d4b310dd1cdf60cb37437\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T15:41:38.158Z\",\n            \"updatedAt\": \"2025-01-07T15:41:38.158Z\"\n        },\n        {\n            \"_id\": \"677d4b11f3d2d0be7f15fed1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T15:41:06.524Z\",\n            \"updatedAt\": \"2025-01-07T15:41:06.524Z\"\n        },\n        {\n            \"_id\": \"677d46bcf3d2d0be7f15aea6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T15:22:36.830Z\",\n            \"updatedAt\": \"2025-01-07T15:22:36.830Z\"\n        },\n        {\n            \"_id\": \"677d3c12b7de14d906c9eadd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:37:07.448Z\",\n            \"updatedAt\": \"2025-01-07T14:37:07.448Z\"\n        },\n        {\n            \"_id\": \"677d397e0dd1cdf60cb11378\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:26:06.748Z\",\n            \"updatedAt\": \"2025-01-07T14:26:06.748Z\"\n        },\n        {\n            \"_id\": \"677d37ebf3d2d0be7f1436ee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:19:23.866Z\",\n            \"updatedAt\": \"2025-01-07T14:19:23.866Z\"\n        },\n        {\n            \"_id\": \"677d37ad0dd1cdf60cb0e5c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:18:22.171Z\",\n            \"updatedAt\": \"2025-01-07T14:18:22.171Z\"\n        },\n        {\n            \"_id\": \"677d35d9ade7b5cfa69a15d5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:10:34.532Z\",\n            \"updatedAt\": \"2025-01-07T14:10:34.532Z\"\n        },\n        {\n            \"_id\": \"677d2903f40283627d08e03d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Sol's Best Practices for Discovery Calls\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T13:15:47.180Z\",\n            \"updatedAt\": \"2025-01-07T13:16:06.933Z\"\n        },\n        {\n            \"_id\": \"677bac283f3e1105dab003a5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-06T10:10:49.099Z\",\n            \"updatedAt\": \"2025-01-06T10:10:49.099Z\"\n        },\n        {\n            \"_id\": \"6777f65302e70595229d3e0c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-03T14:38:12.706Z\",\n            \"updatedAt\": \"2025-01-03T14:38:12.706Z\"\n        },\n        {\n            \"_id\": \"67766d8570972ea3336e6852\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-02T10:42:13.627Z\",\n            \"updatedAt\": \"2025-01-02T10:42:13.627Z\"\n        },\n        {\n            \"_id\": \"6775252ac24f2dc4c7d268d0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-01T11:21:15.590Z\",\n            \"updatedAt\": \"2025-01-01T11:21:15.590Z\"\n        },\n        {\n            \"_id\": \"6765929c8f6cd411b69c40a1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-20T15:51:56.750Z\",\n            \"updatedAt\": \"2024-12-20T15:51:56.750Z\"\n        },\n        {\n            \"_id\": \"676525da00c8ca560af70794\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-20T08:07:54.950Z\",\n            \"updatedAt\": \"2024-12-20T08:07:54.950Z\"\n        },\n        {\n            \"_id\": \"6762f408b8cc854f45a47678\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-8.jpg?alt=media&token=0b331368-3445-483d-90c8-9b18605c9097\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-18T16:10:48.475Z\",\n            \"updatedAt\": \"2024-12-18T16:13:55.616Z\"\n        },\n        {\n            \"_id\": \"6762b59b82002a4b9488c2c0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-18T11:44:27.703Z\",\n            \"updatedAt\": \"2024-12-18T11:44:27.703Z\"\n        },\n        {\n            \"_id\": \"6762b4b0f899d9667bd1a58d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-18T11:40:46.826Z\",\n            \"updatedAt\": \"2024-12-18T11:40:46.826Z\"\n        },\n        {\n            \"_id\": \"6762b4b816d36c4e794db5b3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-18T11:40:40.680Z\",\n            \"updatedAt\": \"2024-12-18T11:40:40.680Z\"\n        },\n        {\n            \"_id\": \"6762b27282002a4b94887598\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-18T11:30:58.866Z\",\n            \"updatedAt\": \"2024-12-18T11:30:58.866Z\"\n        },\n        {\n            \"_id\": \"676199eb5a2cf823f722b288\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-17T15:34:04.050Z\",\n            \"updatedAt\": \"2024-12-17T15:34:04.050Z\"\n        },\n        {\n            \"_id\": \"6760834442e26c5e908d68b9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-16T19:45:09.333Z\",\n            \"updatedAt\": \"2024-12-16T19:45:09.333Z\"\n        },\n        {\n            \"_id\": \"6760680d42e26c5e908d227b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-16T17:49:01.730Z\",\n            \"updatedAt\": \"2024-12-16T17:49:01.730Z\"\n        },\n        {\n            \"_id\": \"676026714baec138a5e2eb38\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-16T13:09:06.290Z\",\n            \"updatedAt\": \"2024-12-16T13:09:06.290Z\"\n        },\n        {\n            \"_id\": \"6760129423b677c824d143df\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-16T11:44:20.968Z\",\n            \"updatedAt\": \"2024-12-16T11:44:20.968Z\"\n        },\n        {\n            \"_id\": \"6760109c23b677c824d118e7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-16T11:35:57.496Z\",\n            \"updatedAt\": \"2024-12-16T11:35:57.496Z\"\n        },\n        {\n            \"_id\": \"675c51bc4df53ece5aa7ebdb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-13T15:24:45.229Z\",\n            \"updatedAt\": \"2024-12-13T15:24:45.229Z\"\n        },\n        {\n            \"_id\": \"675b17518c78242d9ceff2a6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626e94b4a167f1aad15a1554%2F1657198879608%2F1657198884322%2Fone%20on%20one%20meeting%20guidelines.png?alt=media&token=7edfe4d8-f03d-4949-8222-5c363e692500\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"1:1 Meeting Guidelines\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T17:03:14.228Z\",\n            \"updatedAt\": \"2024-12-12T17:03:14.228Z\"\n        },\n        {\n            \"_id\": \"675af330b3eb5715657c6d4d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T14:29:04.943Z\",\n            \"updatedAt\": \"2024-12-12T14:29:04.943Z\"\n        },\n        {\n            \"_id\": \"675ad8bb8dc53e3dcf39defd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T12:36:12.199Z\",\n            \"updatedAt\": \"2024-12-12T12:36:12.199Z\"\n        },\n        {\n            \"_id\": \"675ab1d00bb10f705f0981aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T09:50:08.579Z\",\n            \"updatedAt\": \"2024-12-12T09:50:08.579Z\"\n        },\n        {\n            \"_id\": \"675ab1198dc53e3dcfd540e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Time Management \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T09:47:06.045Z\",\n            \"updatedAt\": \"2024-12-12T09:48:45.871Z\"\n        },\n        {\n            \"_id\": \"675ab0ae8f9eef5bbdbf990e\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T09:45:18.454Z\",\n            \"updatedAt\": \"2024-12-12T09:45:18.454Z\"\n        },\n        {\n            \"_id\": \"6759e6f3ab3dd380938ccb5d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T19:24:36.519Z\",\n            \"updatedAt\": \"2024-12-11T19:24:36.519Z\"\n        },\n        {\n            \"_id\": \"6759d82517f2272afd51ae53\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T18:21:26.018Z\",\n            \"updatedAt\": \"2024-12-11T18:21:26.018Z\"\n        },\n        {\n            \"_id\": \"6759d5134a09dfdad8403899\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T18:08:20.352Z\",\n            \"updatedAt\": \"2024-12-11T18:08:29.217Z\"\n        },\n        {\n            \"_id\": \"6759acf816b788ac0305df2c\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T15:17:12.455Z\",\n            \"updatedAt\": \"2024-12-11T15:17:12.455Z\"\n        },\n        {\n            \"_id\": \"6759a8654a1c9537f917f5ee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T14:57:41.542Z\",\n            \"updatedAt\": \"2024-12-11T14:57:41.542Z\"\n        },\n        {\n            \"_id\": \"67597c6ad99f0f82230d5e4a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f1c96718cdc600071bc8c4%2F1676819624289%2F1676819627942%2FBrown%20Modern%20Good%20Morning%20Banner%20Landscape%20(1).png?alt=media&token=84a960e1-b0a2-4c57-90f8-57f2260637e7\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Interviewing Guide: For Managers\",\n            \"description\": \"A guide to help you better assess new talent.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T11:50:02.838Z\",\n            \"updatedAt\": \"2024-12-11T11:50:02.838Z\"\n        },\n        {\n            \"_id\": \"675978c3150e1f642a81afd2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T11:34:27.689Z\",\n            \"updatedAt\": \"2024-12-11T11:34:27.689Z\"\n        },\n        {\n            \"_id\": \"67586e404dc31e6110cc26c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T16:37:21.463Z\",\n            \"updatedAt\": \"2024-12-10T16:37:21.463Z\"\n        },\n        {\n            \"_id\": \"67585525a0229b63ac13a6c9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T14:50:13.917Z\",\n            \"updatedAt\": \"2024-12-10T14:50:13.917Z\"\n        },\n        {\n            \"_id\": \"67584c74a0229b63ac1304e5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T14:13:09.196Z\",\n            \"updatedAt\": \"2024-12-10T14:21:40.345Z\"\n        },\n        {\n            \"_id\": \"6758288cbcc6914659b649f9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection (External)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:39:56.842Z\",\n            \"updatedAt\": \"2024-12-10T11:40:25.114Z\"\n        },\n        {\n            \"_id\": \"6758280ebd31443e5fc3bd35\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-10.jpg?alt=media&token=2f77c06e-bab8-4260-b3d8-d55a57ed5a4c\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:37:50.495Z\",\n            \"updatedAt\": \"2024-12-10T11:37:50.495Z\"\n        },\n        {\n            \"_id\": \"6758263d2c4b8ce0c82edff4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:30:06.253Z\",\n            \"updatedAt\": \"2024-12-10T11:30:06.253Z\"\n        },\n        {\n            \"_id\": \"67582542a2750718a871b916\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:25:54.395Z\",\n            \"updatedAt\": \"2024-12-10T11:25:54.395Z\"\n        },\n        {\n            \"_id\": \"675824b9bcc6914659b624a4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:23:37.287Z\",\n            \"updatedAt\": \"2024-12-10T11:23:37.287Z\"\n        },\n        {\n            \"_id\": \"6756d7ad5cf5f4977d1c0525\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-09T11:42:37.712Z\",\n            \"updatedAt\": \"2024-12-09T11:42:37.712Z\"\n        },\n        {\n            \"_id\": \"6751cc8c42e150c2b33aafe8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-4.jpg?alt=media&token=66336249-4a18-4203-a2d0-5bb731b56eb0\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-05T15:53:48.810Z\",\n            \"updatedAt\": \"2024-12-05T15:56:32.738Z\"\n        },\n        {\n            \"_id\": \"6751c83720af56e4c869f0b9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-05T15:35:20.073Z\",\n            \"updatedAt\": \"2024-12-05T15:35:20.073Z\"\n        },\n        {\n            \"_id\": \"67509ea37612e3b0e690291c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-04T18:25:40.165Z\",\n            \"updatedAt\": \"2024-12-04T18:25:40.165Z\"\n        },\n        {\n            \"_id\": \"675095e079a84b9a1f087433\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-04T17:48:17.749Z\",\n            \"updatedAt\": \"2024-12-04T17:53:30.574Z\"\n        },\n        {\n            \"_id\": \"674f5085a46ac3749af50142\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-03T18:40:06.367Z\",\n            \"updatedAt\": \"2024-12-03T18:40:06.367Z\"\n        },\n        {\n            \"_id\": \"674f328e85bab42a91d298b9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-03T16:32:14.909Z\",\n            \"updatedAt\": \"2024-12-03T16:32:14.909Z\"\n        },\n        {\n            \"_id\": \"674ecf3f31bbe61e36404dad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-03T09:28:32.004Z\",\n            \"updatedAt\": \"2024-12-03T09:32:08.778Z\"\n        },\n        {\n            \"_id\": \"674df8efd16f390c9aa7e318\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-2.jpg?alt=media&token=09eed7ef-42e5-4f1f-8bad-060878e440ae\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Moses & Barak training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T18:14:07.091Z\",\n            \"updatedAt\": \"2024-12-02T18:14:39.652Z\"\n        },\n        {\n            \"_id\": \"674dde3485eba695c748d900\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T16:20:05.078Z\",\n            \"updatedAt\": \"2024-12-02T16:20:05.078Z\"\n        },\n        {\n            \"_id\": \"674dc4be401b63f6492aa5ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%205-3.jpg?alt=media&token=3881e7dc-c227-411f-8f9d-f781e81b915c\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"zsdf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T14:31:26.277Z\",\n            \"updatedAt\": \"2024-12-02T14:31:50.000Z\"\n        },\n        {\n            \"_id\": \"674da5398bb858fd3bada4ba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T12:16:57.367Z\",\n            \"updatedAt\": \"2024-12-02T12:16:57.367Z\"\n        },\n        {\n            \"_id\": \"674da2ef401b63f649287ddd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T12:07:12.585Z\",\n            \"updatedAt\": \"2024-12-02T12:16:49.747Z\"\n        },\n        {\n            \"_id\": \"6749fdb23a47f081eb2f559a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-29T17:45:22.907Z\",\n            \"updatedAt\": \"2024-11-29T17:45:22.907Z\"\n        },\n        {\n            \"_id\": \"674895447a3bbd2332ef2f08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67486fba83f8d580a033b865%2F1732800922717%2F1732800925493%2FArgus_URL_Logo_RGB_V1_scaled_1732800925493.jpg?alt=media&token=6258bbcb-a17a-472d-a2cd-c241003d9198\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Fabuwood & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T16:07:32.897Z\",\n            \"updatedAt\": \"2024-11-28T16:07:50.032Z\"\n        },\n        {\n            \"_id\": \"67488c518703dbab1075a39e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T15:29:21.578Z\",\n            \"updatedAt\": \"2024-11-28T15:37:33.564Z\"\n        },\n        {\n            \"_id\": \"67472524b4ccd2a1fb314495\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-27T13:56:52.042Z\",\n            \"updatedAt\": \"2024-11-27T13:56:52.042Z\"\n        },\n        {\n            \"_id\": \"674603c95ef4029b9884ed9f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T17:22:17.911Z\",\n            \"updatedAt\": \"2024-11-26T17:34:27.589Z\"\n        },\n        {\n            \"_id\": \"6746038fbf0477e78207fb64\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"welcome\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T17:21:19.183Z\",\n            \"updatedAt\": \"2024-11-26T17:21:37.853Z\"\n        },\n        {\n            \"_id\": \"6745fbd1878ad7702888cd1b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T16:48:18.039Z\",\n            \"updatedAt\": \"2024-11-26T16:53:23.959Z\"\n        },\n        {\n            \"_id\": \"674592e91c907ed2d2724e5c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T09:20:41.949Z\",\n            \"updatedAt\": \"2024-11-26T09:20:41.949Z\"\n        },\n        {\n            \"_id\": \"674592a58c610d8cf5ac9bbb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T09:19:33.565Z\",\n            \"updatedAt\": \"2024-11-26T09:19:39.522Z\"\n        },\n        {\n            \"_id\": \"6744c139402ecd5cf6fe9180\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-25T18:26:01.898Z\",\n            \"updatedAt\": \"2024-11-25T18:29:33.850Z\"\n        },\n        {\n            \"_id\": \"673f5d1c778c24b471cebf0d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Solution engineering\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-21T16:17:33.345Z\",\n            \"updatedAt\": \"2024-11-21T16:20:50.262Z\"\n        },\n        {\n            \"_id\": \"673f5040c98eb7e3a66391b4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-21T15:22:41.298Z\",\n            \"updatedAt\": \"2024-11-21T15:22:41.298Z\"\n        },\n        {\n            \"_id\": \"673f1a35dd00ab50a2434cd6\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-21T11:32:05.244Z\",\n            \"updatedAt\": \"2024-11-21T11:32:39.296Z\"\n        },\n        {\n            \"_id\": \"673f166cdc627b4759257c32\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-21T11:15:57.565Z\",\n            \"updatedAt\": \"2024-11-21T11:24:28.683Z\"\n        },\n        {\n            \"_id\": \"673e43b51069beb880897808\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-20T20:16:53.955Z\",\n            \"updatedAt\": \"2024-11-20T20:16:53.955Z\"\n        },\n        {\n            \"_id\": \"673dff050df84ae15b635b7f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-20T15:23:50.581Z\",\n            \"updatedAt\": \"2024-11-20T15:30:37.610Z\"\n        },\n        {\n            \"_id\": \"673df5fc1069beb880863a5a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e39fb32b22ef0008940512%2F1675868390669%2F1675868411108%2FTwo%20people%20high%20fiving.png?alt=media&token=01779882-6871-4c9b-9f67-480ca668d4fc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Welcome to the Customer Success Team \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-20T14:45:17.877Z\",\n            \"updatedAt\": \"2024-11-20T14:45:17.877Z\"\n        },\n        {\n            \"_id\": \"673dadb49ac23ac28fc4adea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-20T09:36:53.177Z\",\n            \"updatedAt\": \"2024-11-20T09:40:41.063Z\"\n        },\n        {\n            \"_id\": \"673ba6b5a1407e66c650ce7d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-18T20:42:30.158Z\",\n            \"updatedAt\": \"2024-11-18T20:42:30.158Z\"\n        },\n        {\n            \"_id\": \"673b84d32647211b950eb584\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-18T18:17:56.009Z\",\n            \"updatedAt\": \"2024-11-18T18:17:56.009Z\"\n        },\n        {\n            \"_id\": \"673b4543c6e1394116df4981\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-18T13:46:44.104Z\",\n            \"updatedAt\": \"2024-11-18T13:46:44.104Z\"\n        },\n        {\n            \"_id\": \"6736717f7207b151647708d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-14T21:54:08.680Z\",\n            \"updatedAt\": \"2024-11-14T21:54:08.680Z\"\n        },\n        {\n            \"_id\": \"67366c2c7207b151647705f1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-14T21:31:25.320Z\",\n            \"updatedAt\": \"2024-11-14T21:31:25.320Z\"\n        },\n        {\n            \"_id\": \"673644e01286def044113e95\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-14T18:43:46.141Z\",\n            \"updatedAt\": \"2024-11-14T18:43:46.141Z\"\n        },\n        {\n            \"_id\": \"67361ad77207b1516475bf4d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-14T15:44:24.809Z\",\n            \"updatedAt\": \"2024-11-14T15:44:24.809Z\"\n        },\n        {\n            \"_id\": \"67338afcc024b9438fa8bc15\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-12T17:06:04.624Z\",\n            \"updatedAt\": \"2024-11-12T17:06:04.624Z\"\n        },\n        {\n            \"_id\": \"673363f2113e35c8169e218b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-12T14:19:31.028Z\",\n            \"updatedAt\": \"2024-11-12T14:19:31.028Z\"\n        },\n        {\n            \"_id\": \"67336356bb8b79af0f130736\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63ed00ab871f3e00080bc740%2F1676480643128%2F1676480643404%2Ffeedback.png?alt=media&token=3bb7091f-d40e-426c-b3b5-becf156dd3b9\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Client Onboarding Feedback Process\",\n            \"description\": \"Combine all your client feedback into a single accessible space. \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-12T14:16:54.509Z\",\n            \"updatedAt\": \"2024-11-12T14:17:47.613Z\"\n        },\n        {\n            \"_id\": \"67323d646ec6d0de048e5375\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-11T17:22:44.547Z\",\n            \"updatedAt\": \"2024-11-11T17:22:44.547Z\"\n        },\n        {\n            \"_id\": \"67323b976ec6d0de048e4df7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-11T17:15:04.118Z\",\n            \"updatedAt\": \"2024-11-11T17:15:04.118Z\"\n        },\n        {\n            \"_id\": \"6731d6a910d6b1ca13b804ff\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-11T10:04:26.143Z\",\n            \"updatedAt\": \"2024-11-11T10:06:43.530Z\"\n        },\n        {\n            \"_id\": \"672e2de9123a74ea4e8d252b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-08T15:27:38.235Z\",\n            \"updatedAt\": \"2024-11-08T15:27:38.235Z\"\n        },\n        {\n            \"_id\": \"672e262c19222fa3abee09a9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-08T14:54:37.217Z\",\n            \"updatedAt\": \"2024-11-08T14:54:37.217Z\"\n        },\n        {\n            \"_id\": \"672e24ff93795ac6be98b688\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-08T14:49:36.092Z\",\n            \"updatedAt\": \"2024-11-08T14:49:36.092Z\"\n        },\n        {\n            \"_id\": \"672cf660c33c703b61266f11\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T17:18:26.029Z\",\n            \"updatedAt\": \"2024-11-07T17:18:26.029Z\"\n        },\n        {\n            \"_id\": \"672ce6d410187482f4cc1051\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T16:12:04.765Z\",\n            \"updatedAt\": \"2024-11-07T16:12:04.765Z\"\n        },\n        {\n            \"_id\": \"672cdea28846d2a70f88b9f4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T15:37:07.444Z\",\n            \"updatedAt\": \"2024-11-07T15:37:07.444Z\"\n        },\n        {\n            \"_id\": \"672cb4924c2590351d4e1eca\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T12:37:38.911Z\",\n            \"updatedAt\": \"2024-11-07T12:37:38.911Z\"\n        },\n        {\n            \"_id\": \"672c9b75cee22036aafef666\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T10:50:29.904Z\",\n            \"updatedAt\": \"2024-11-07T10:50:29.904Z\"\n        },\n        {\n            \"_id\": \"672c9721bef9caa345498d96\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T10:32:01.722Z\",\n            \"updatedAt\": \"2024-11-07T10:32:01.722Z\"\n        },\n        {\n            \"_id\": \"672bb615c5622a23db6b5cd6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T18:31:50.201Z\",\n            \"updatedAt\": \"2024-11-06T18:31:50.201Z\"\n        },\n        {\n            \"_id\": \"672baafeccb91feeb0196cc7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T17:44:30.833Z\",\n            \"updatedAt\": \"2024-11-06T17:44:30.833Z\"\n        },\n        {\n            \"_id\": \"672b8ad991e2142317f12072\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T15:27:22.683Z\",\n            \"updatedAt\": \"2024-11-06T15:27:22.683Z\"\n        },\n        {\n            \"_id\": \"672b677ba3749b056bc627be\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T12:56:29.420Z\",\n            \"updatedAt\": \"2024-11-06T12:56:29.420Z\"\n        },\n        {\n            \"_id\": \"672b5cb940e787b9a22ff9d8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T12:10:34.597Z\",\n            \"updatedAt\": \"2024-11-06T12:10:34.597Z\"\n        },\n        {\n            \"_id\": \"672b5a935d58b387d89438c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T12:01:24.365Z\",\n            \"updatedAt\": \"2024-11-06T12:01:24.365Z\"\n        },\n        {\n            \"_id\": \"672b513794e21b34955c6d06\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"final step\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T11:21:27.644Z\",\n            \"updatedAt\": \"2024-11-06T11:21:35.178Z\"\n        },\n        {\n            \"_id\": \"672a80dd82ce679856ca1f59\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T20:32:30.431Z\",\n            \"updatedAt\": \"2024-11-05T20:32:30.431Z\"\n        },\n        {\n            \"_id\": \"672a5b7ace16d4fc004f41d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Leadership program\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T17:52:58.725Z\",\n            \"updatedAt\": \"2024-11-05T17:53:47.819Z\"\n        },\n        {\n            \"_id\": \"672a0cc9500021e3613d06b5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F672a0cc9500021e3613d06b5%2F1730809280997%2F1730809286167%2F5ebc2a49a428098290267716_ezgif_com_optimize__18__1730809286167.gif?alt=media&token=72a8e6d1-e272-4769-ae59-c607e7809bc1\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Create Powerful Sales Messaging\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T12:17:13.235Z\",\n            \"updatedAt\": \"2024-11-05T12:21:34.338Z\"\n        },\n        {\n            \"_id\": \"672a0c3e90740b5b0be2b2f8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Salesforce CRM Full Training Tutorial For Beginners \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T12:14:54.054Z\",\n            \"updatedAt\": \"2024-11-05T12:16:21.931Z\"\n        },\n        {\n            \"_id\": \"6729c9c3ac91debd966e7f11\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T07:31:17.331Z\",\n            \"updatedAt\": \"2024-11-05T07:31:17.331Z\"\n        },\n        {\n            \"_id\": \"6728cef2766fc13f7930d03d\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-04T13:41:06.124Z\",\n            \"updatedAt\": \"2024-11-04T13:41:06.124Z\"\n        },\n        {\n            \"_id\": \"6728ccf1392c760889fa73bb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-10.jpg?alt=media&token=2f77c06e-bab8-4260-b3d8-d55a57ed5a4c\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Isabella\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-04T13:32:33.964Z\",\n            \"updatedAt\": \"2024-11-04T13:33:15.132Z\"\n        },\n        {\n            \"_id\": \"6728cbe334b627d1fd54af1c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-04T13:28:05.233Z\",\n            \"updatedAt\": \"2024-11-04T13:28:05.233Z\"\n        },\n        {\n            \"_id\": \"6728ae1814dad77c5f1d3383\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6240581fbe21116a132fa5f1%2F1652008868551%2FCapture%20d%E2%80%99e%CC%81cran%202022-05-08%20a%CC%80%2012.23.18.png?alt=media&token=27aa4abf-e6c4-422c-8109-1f0ac7b46775\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Manager Toolkit\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-04T11:20:58.082Z\",\n            \"updatedAt\": \"2024-11-04T11:20:58.082Z\"\n        },\n        {\n            \"_id\": \"67288380c12948402a4bb210\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-04T08:19:13.079Z\",\n            \"updatedAt\": \"2024-11-04T08:19:13.079Z\"\n        },\n        {\n            \"_id\": \"672882f96f1648a6f39f5e5b\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Become A More Effective Communicator\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-04T08:16:58.757Z\",\n            \"updatedAt\": \"2024-11-04T08:17:29.375Z\"\n        },\n        {\n            \"_id\": \"6723b76048237c85e009d0aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6723b76048237c85e009d0aa%2F1730394029105%2F1730394032814%2Ffavicon_1730394032814.png?alt=media&token=32da1863-de58-4283-aebd-85f12bf71639\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for SMG\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-31T16:59:12.961Z\",\n            \"updatedAt\": \"2024-10-31T17:12:03.988Z\"\n        },\n        {\n            \"_id\": \"672394b0c2f476185dd86e1e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-31T14:31:12.748Z\",\n            \"updatedAt\": \"2024-10-31T14:31:12.748Z\"\n        },\n        {\n            \"_id\": \"672394177a621c0453810012\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-31T14:28:40.915Z\",\n            \"updatedAt\": \"2024-10-31T14:28:40.915Z\"\n        },\n        {\n            \"_id\": \"67238c647f3b25bd14c78b29\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-31T13:55:49.594Z\",\n            \"updatedAt\": \"2024-10-31T13:55:49.594Z\"\n        },\n        {\n            \"_id\": \"67223b5cce3303abea86184f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-30T13:57:48.922Z\",\n            \"updatedAt\": \"2024-10-30T13:57:48.922Z\"\n        },\n        {\n            \"_id\": \"67223b512b70112aa7ece7f7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-6.jpg?alt=media&token=b4bf6c14-a705-4996-95a4-cd7c119d6ace\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-30T13:57:37.480Z\",\n            \"updatedAt\": \"2024-10-30T13:57:37.480Z\"\n        },\n        {\n            \"_id\": \"6722395e2b70112aa7eca793\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-9.jpg?alt=media&token=6f8f0e43-7798-4bfe-98d1-fffba8380474\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Panaya customer training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-30T13:49:18.139Z\",\n            \"updatedAt\": \"2024-10-30T13:53:38.889Z\"\n        },\n        {\n            \"_id\": \"672226c7ab71c593f17b5266\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-30T12:30:00.537Z\",\n            \"updatedAt\": \"2024-10-30T12:30:00.537Z\"\n        },\n        {\n            \"_id\": \"67210e042e269c2ac963d8a6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-29T16:32:05.114Z\",\n            \"updatedAt\": \"2024-10-29T16:32:05.114Z\"\n        },\n        {\n            \"_id\": \"6720e2d87f2ff5bb638d1c99\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-29T13:27:53.197Z\",\n            \"updatedAt\": \"2024-10-29T13:28:57.264Z\"\n        },\n        {\n            \"_id\": \"671fd562a776ed0f4fe6b0c1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-28T18:18:11.528Z\",\n            \"updatedAt\": \"2024-10-28T18:18:11.528Z\"\n        },\n        {\n            \"_id\": \"671fcafb33ecb66febc47d77\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-28T17:33:48.169Z\",\n            \"updatedAt\": \"2024-10-28T17:33:48.169Z\"\n        },\n        {\n            \"_id\": \"671f89f5fb0bef5c0e036d81\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-28T12:56:21.992Z\",\n            \"updatedAt\": \"2024-10-28T12:56:21.992Z\"\n        },\n        {\n            \"_id\": \"671f77f0cc3586753bd894d2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-28T11:39:29.663Z\",\n            \"updatedAt\": \"2024-10-28T11:39:29.663Z\"\n        },\n        {\n            \"_id\": \"671f3d1e732c45d652ce6b26\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-7.jpg?alt=media&token=f1ca795b-fcd1-47e2-9608-f1f04f882e8d\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"תהליך קליטה כללי בעצמי\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-28T07:28:30.415Z\",\n            \"updatedAt\": \"2024-10-28T07:33:48.427Z\"\n        },\n        {\n            \"_id\": \"671f3b98ab9d98a3e3046456\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-28T07:22:00.646Z\",\n            \"updatedAt\": \"2024-10-28T07:22:00.646Z\"\n        },\n        {\n            \"_id\": \"6717c16190930aa3bff7e4f3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"leadership\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:14:41.852Z\",\n            \"updatedAt\": \"2024-10-28T06:42:20.833Z\"\n        },\n        {\n            \"_id\": \"6717c57e6f7de1baf71a1975\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:32:14.976Z\",\n            \"updatedAt\": \"2024-10-22T15:32:14.976Z\"\n        },\n        {\n            \"_id\": \"6717c4cd97226da4ef3799c0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:29:17.837Z\",\n            \"updatedAt\": \"2024-10-22T15:29:17.837Z\"\n        },\n        {\n            \"_id\": \"6717c2827949552e82793724\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-3.jpg?alt=media&token=66cfdc30-841a-4633-a9ed-3434a55791e2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:19:30.481Z\",\n            \"updatedAt\": \"2024-10-22T15:21:47.594Z\"\n        },\n        {\n            \"_id\": \"6716822e1fd4c43b4b05b846\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-21T16:32:46.945Z\",\n            \"updatedAt\": \"2024-10-21T16:34:23.264Z\"\n        },\n        {\n            \"_id\": \"671661b44aaacd94161e8d25\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-21T14:14:12.720Z\",\n            \"updatedAt\": \"2024-10-21T14:14:12.720Z\"\n        },\n        {\n            \"_id\": \"6571c3b0b0a863000afe17ca\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-9.jpg?alt=media&token=6f8f0e43-7798-4bfe-98d1-fffba8380474\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:08:00.434Z\",\n            \"updatedAt\": \"2024-10-21T14:01:07.667Z\"\n        },\n        {\n            \"_id\": \"6571c3bf91e50c00080f8b5a\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:08:15.661Z\",\n            \"updatedAt\": \"2024-10-21T14:00:45.786Z\"\n        },\n        {\n            \"_id\": \"67126200950ea5778db7a080\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-18T13:26:24.644Z\",\n            \"updatedAt\": \"2024-10-18T13:26:24.644Z\"\n        },\n        {\n            \"_id\": \"6712612a70e4e50de850b421\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-18T13:22:51.558Z\",\n            \"updatedAt\": \"2024-10-18T13:22:51.558Z\"\n        },\n        {\n            \"_id\": \"67125f1307ead8c3f85a345c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-18T13:13:55.622Z\",\n            \"updatedAt\": \"2024-10-18T13:13:55.622Z\"\n        },\n        {\n            \"_id\": \"67121c2370e4e50de84de621\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-18T08:28:20.235Z\",\n            \"updatedAt\": \"2024-10-18T08:29:25.030Z\"\n        },\n        {\n            \"_id\": \"670e908ff74b9384d224b38f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%205-3.jpg?alt=media&token=3881e7dc-c227-411f-8f9d-f781e81b915c\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-15T15:55:59.879Z\",\n            \"updatedAt\": \"2024-10-15T15:55:59.879Z\"\n        },\n        {\n            \"_id\": \"670e8e197f81635efa8dcb17\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Nathans Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-15T15:45:29.066Z\",\n            \"updatedAt\": \"2024-10-15T15:49:06.901Z\"\n        },\n        {\n            \"_id\": \"670e8d087f81635efa8dc5e2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-15T15:40:57.324Z\",\n            \"updatedAt\": \"2024-10-15T15:40:57.324Z\"\n        },\n        {\n            \"_id\": \"670e338b3438a8d401bbabff\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-2.jpg?alt=media&token=c53d339e-7923-4642-a909-dd44cd1a571e\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-15T09:19:07.799Z\",\n            \"updatedAt\": \"2024-10-15T09:19:18.977Z\"\n        },\n        {\n            \"_id\": \"670d36c62179a87c3a856c73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-2.jpg?alt=media&token=45b099d9-1818-48ea-9a2e-116fcb83f7c0\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T15:20:38.022Z\",\n            \"updatedAt\": \"2024-10-14T15:20:43.600Z\"\n        },\n        {\n            \"_id\": \"670d267640bf86dcb9628c8f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T14:11:02.717Z\",\n            \"updatedAt\": \"2024-10-14T14:11:02.717Z\"\n        },\n        {\n            \"_id\": \"670d260e1afcb17294b30fee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T14:09:18.840Z\",\n            \"updatedAt\": \"2024-10-14T14:09:18.840Z\"\n        },\n        {\n            \"_id\": \"670ce9b05edff1a8701afa3c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65d74263599ea848f06c21b4%2F1708606101264%2F1708606103918%2Fappsflyer2449_1708606103919.jpg?alt=media&token=9438ecfb-cd6c-47d2-88da-27bac6d55665\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Appsflyer\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T09:51:44.869Z\",\n            \"updatedAt\": \"2024-10-14T09:51:44.869Z\"\n        },\n        {\n            \"_id\": \"67081ee985dd5cffadb63306\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T18:37:30.075Z\",\n            \"updatedAt\": \"2024-10-10T18:37:30.075Z\"\n        },\n        {\n            \"_id\": \"67081cc3797a41b9088867c0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T18:28:19.654Z\",\n            \"updatedAt\": \"2024-10-10T18:28:19.654Z\"\n        },\n        {\n            \"_id\": \"6707f7464168f561f4f49e1a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-10.jpg?alt=media&token=991feccf-2d90-4582-a880-1b85462a3209\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T15:48:22.903Z\",\n            \"updatedAt\": \"2024-10-10T15:48:22.903Z\"\n        },\n        {\n            \"_id\": \"6707f346797a41b908880cb9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Harness\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T15:31:18.678Z\",\n            \"updatedAt\": \"2024-10-10T15:32:08.130Z\"\n        },\n        {\n            \"_id\": \"6707e47885dd5cffadb51c3f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707e47885dd5cffadb51c3f%2F1728573292759%2F1728573298372%2Fconstant_contact_1728573298372.jpg?alt=media&token=032e9ac2-55cd-4a03-94b5-4e5bbf84f8d1\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Constant Contact\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T14:28:08.421Z\",\n            \"updatedAt\": \"2024-10-10T15:22:14.458Z\"\n        },\n        {\n            \"_id\": \"6707e1a451e65253aa2b22d4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T14:16:05.209Z\",\n            \"updatedAt\": \"2024-10-10T14:16:05.209Z\"\n        },\n        {\n            \"_id\": \"6707e11944e247710d6f63e9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T14:13:45.649Z\",\n            \"updatedAt\": \"2024-10-10T14:13:45.649Z\"\n        },\n        {\n            \"_id\": \"67078dd9840b680824db9932\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T08:18:34.365Z\",\n            \"updatedAt\": \"2024-10-10T08:18:34.365Z\"\n        },\n        {\n            \"_id\": \"67078d5a85dd5cffadaf18be\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T08:16:27.228Z\",\n            \"updatedAt\": \"2024-10-10T08:16:27.228Z\"\n        },\n        {\n            \"_id\": \"6706b13585dd5cffadac64c2\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T16:37:09.846Z\",\n            \"updatedAt\": \"2024-10-09T16:37:09.846Z\"\n        },\n        {\n            \"_id\": \"6706b01724cff52ef8f38180\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Sigma MGMT training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T16:32:23.283Z\",\n            \"updatedAt\": \"2024-10-09T16:36:32.912Z\"\n        },\n        {\n            \"_id\": \"6706afd5f0d14f6db862b040\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T16:31:17.208Z\",\n            \"updatedAt\": \"2024-10-09T16:31:17.208Z\"\n        },\n        {\n            \"_id\": \"6706a074797a41b9087e6d4f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T15:25:41.583Z\",\n            \"updatedAt\": \"2024-10-09T15:25:41.583Z\"\n        },\n        {\n            \"_id\": \"670691c2ac29f54941a7b45f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T14:22:58.886Z\",\n            \"updatedAt\": \"2024-10-09T14:22:58.886Z\"\n        },\n        {\n            \"_id\": \"670654182ed91e780375dab6\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T09:59:52.894Z\",\n            \"updatedAt\": \"2024-10-09T09:59:52.894Z\"\n        },\n        {\n            \"_id\": \"670649a969d46450844a8283\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-7.jpg?alt=media&token=bb32770c-9bab-418a-aa6e-c90079f67a48\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"OutSystems general onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T09:15:21.322Z\",\n            \"updatedAt\": \"2024-10-09T09:22:32.238Z\"\n        },\n        {\n            \"_id\": \"6706499602840f7533f0ea61\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T09:15:02.217Z\",\n            \"updatedAt\": \"2024-10-09T09:15:02.217Z\"\n        },\n        {\n            \"_id\": \"67063e9c2ed91e780373f987\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T08:28:12.873Z\",\n            \"updatedAt\": \"2024-10-09T08:30:51.504Z\"\n        },\n        {\n            \"_id\": \"67063ab02ed91e780373a7ad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T08:11:28.696Z\",\n            \"updatedAt\": \"2024-10-09T08:11:28.696Z\"\n        },\n        {\n            \"_id\": \"6706379855ec796b185c0017\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T07:58:16.798Z\",\n            \"updatedAt\": \"2024-10-09T07:58:16.798Z\"\n        },\n        {\n            \"_id\": \"6571c3c3b0a863000afe198a\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:08:19.098Z\",\n            \"updatedAt\": \"2024-10-08T15:25:46.049Z\"\n        },\n        {\n            \"_id\": \"6571c3abb7561d0009679cb2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:07:55.639Z\",\n            \"updatedAt\": \"2024-10-08T15:24:55.341Z\"\n        },\n        {\n            \"_id\": \"67053442904f4783a2d2eec2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-08T13:31:50.182Z\",\n            \"updatedAt\": \"2024-10-08T13:31:50.182Z\"\n        },\n        {\n            \"_id\": \"6704fb95646e1a0b731f0286\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-08T09:29:58.208Z\",\n            \"updatedAt\": \"2024-10-08T09:29:58.208Z\"\n        },\n        {\n            \"_id\": \"6704137f0397f879add344a2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-07T16:59:43.303Z\",\n            \"updatedAt\": \"2024-10-07T16:59:43.303Z\"\n        },\n        {\n            \"_id\": \"67041009ed07a47e8dd4b90c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-07T16:44:57.862Z\",\n            \"updatedAt\": \"2024-10-07T16:44:57.862Z\"\n        },\n        {\n            \"_id\": \"6703ad2e5a9ba8421fdc23ef\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-07T09:43:10.978Z\",\n            \"updatedAt\": \"2024-10-07T09:43:10.978Z\"\n        },\n        {\n            \"_id\": \"66fc237ab1a1b388037dc2d0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T16:29:47.089Z\",\n            \"updatedAt\": \"2024-10-01T16:29:47.089Z\"\n        },\n        {\n            \"_id\": \"66fc08b558b79fa78a748748\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-7.jpg?alt=media&token=b659d97b-d3d3-42a1-9d0a-e88ff82d785e\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T14:35:33.432Z\",\n            \"updatedAt\": \"2024-10-01T14:35:44.456Z\"\n        },\n        {\n            \"_id\": \"66fc0837b1a1b388037c76f0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T14:33:27.529Z\",\n            \"updatedAt\": \"2024-10-01T14:33:27.529Z\"\n        },\n        {\n            \"_id\": \"66fc07b070f2424efc97b846\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Sales kick off\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T14:31:13.309Z\",\n            \"updatedAt\": \"2024-10-01T14:31:47.083Z\"\n        },\n        {\n            \"_id\": \"66fbd5adbaf19ce67664d5b5\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"xcv \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T10:57:49.058Z\",\n            \"updatedAt\": \"2024-10-01T10:58:34.791Z\"\n        },\n        {\n            \"_id\": \"66fbd4f0baf19ce67664ca0a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-3.jpg?alt=media&token=66cfdc30-841a-4633-a9ed-3434a55791e2\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Crocobet training session\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T10:54:40.254Z\",\n            \"updatedAt\": \"2024-10-01T10:57:20.680Z\"\n        },\n        {\n            \"_id\": \"66fbd33c87fb3999a0d90bdd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T10:47:25.461Z\",\n            \"updatedAt\": \"2024-10-01T10:48:50.255Z\"\n        },\n        {\n            \"_id\": \"66fbc4f2f120fb3b00c4fd92\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T09:46:26.969Z\",\n            \"updatedAt\": \"2024-10-01T09:46:26.969Z\"\n        },\n        {\n            \"_id\": \"66fbc15b17740047bab246ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T09:31:07.806Z\",\n            \"updatedAt\": \"2024-10-01T09:31:07.806Z\"\n        },\n        {\n            \"_id\": \"66fbb73c17740047bab148c4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T08:47:56.680Z\",\n            \"updatedAt\": \"2024-10-01T08:47:56.680Z\"\n        },\n        {\n            \"_id\": \"66fbb6b02a5bd1e77066aea8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T08:45:37.313Z\",\n            \"updatedAt\": \"2024-10-01T08:45:37.313Z\"\n        },\n        {\n            \"_id\": \"66fab34f6adabea7efaa260b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T14:18:56.168Z\",\n            \"updatedAt\": \"2024-09-30T14:18:56.168Z\"\n        },\n        {\n            \"_id\": \"66faa90ee5e20dbc97652384\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-9.jpg?alt=media&token=6f8f0e43-7798-4bfe-98d1-fffba8380474\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Light House training \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T13:35:10.896Z\",\n            \"updatedAt\": \"2024-09-30T13:40:16.021Z\"\n        },\n        {\n            \"_id\": \"66faa856146fd9204ab4bd24\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T13:32:07.382Z\",\n            \"updatedAt\": \"2024-09-30T13:32:07.382Z\"\n        },\n        {\n            \"_id\": \"66faa791efcd7ac0b326b0b4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T13:28:49.849Z\",\n            \"updatedAt\": \"2024-09-30T13:28:49.849Z\"\n        },\n        {\n            \"_id\": \"66fa898ded9bd13c933ed476\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T11:20:46.268Z\",\n            \"updatedAt\": \"2024-09-30T11:20:46.268Z\"\n        },\n        {\n            \"_id\": \"66fa7e867e817960097f9099\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T10:33:43.036Z\",\n            \"updatedAt\": \"2024-09-30T10:33:43.036Z\"\n        },\n        {\n            \"_id\": \"66f66ddc8390dc7b160adde1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-27T08:33:33.769Z\",\n            \"updatedAt\": \"2024-09-27T08:33:33.769Z\"\n        },\n        {\n            \"_id\": \"66f5b5ac9741c221c6676b75\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-26T19:27:41.512Z\",\n            \"updatedAt\": \"2024-09-26T19:27:41.512Z\"\n        },\n        {\n            \"_id\": \"66f58592b2d3942ea5b3f065\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-26T16:02:26.897Z\",\n            \"updatedAt\": \"2024-09-26T16:02:26.897Z\"\n        },\n        {\n            \"_id\": \"66f55d3b9a3ad14362538e04\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"IT from junior to senior\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-26T13:10:20.946Z\",\n            \"updatedAt\": \"2024-09-26T13:16:30.097Z\"\n        },\n        {\n            \"_id\": \"66f43cf465946e66cef78a8d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Wiz\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T16:40:20.797Z\",\n            \"updatedAt\": \"2024-09-25T16:52:25.924Z\"\n        },\n        {\n            \"_id\": \"66f3f1f441bbc11eb9aa72d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Coralogix CS\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T11:20:20.593Z\",\n            \"updatedAt\": \"2024-09-25T11:21:00.943Z\"\n        },\n        {\n            \"_id\": \"66f3d70eff5df6df8e2e9a70\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T09:25:34.898Z\",\n            \"updatedAt\": \"2024-09-25T09:25:34.898Z\"\n        },\n        {\n            \"_id\": \"66f3d6c2ff5df6df8e2e96ad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T09:24:18.778Z\",\n            \"updatedAt\": \"2024-09-25T09:24:18.778Z\"\n        },\n        {\n            \"_id\": \"66f3d36d050ac6c374b46cd5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T09:10:05.880Z\",\n            \"updatedAt\": \"2024-09-25T09:10:05.880Z\"\n        },\n        {\n            \"_id\": \"66f3265443e675a412313d7f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66f3265443e675a412313d7f%2F1727211145141%2F1727211148238%2FNice_1727211148238.gif?alt=media&token=d2629458-6ed0-4acb-a664-8967cc32ed58\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Nice & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T20:51:32.398Z\",\n            \"updatedAt\": \"2024-09-24T21:26:10.689Z\"\n        },\n        {\n            \"_id\": \"66f3223a82889f7d716ea3b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66f3223a82889f7d716ea3b8%2F1727210155703%2F1727210159034%2FHumane_press_vertical_logo_white_1727210159035.png?alt=media&token=b8b0c697-6319-4adb-86bd-94bbd82c9724\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Humane & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T20:34:02.733Z\",\n            \"updatedAt\": \"2024-09-24T20:51:20.126Z\"\n        },\n        {\n            \"_id\": \"66f308571802650202b46e13\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T18:43:36.651Z\",\n            \"updatedAt\": \"2024-09-24T18:43:36.651Z\"\n        },\n        {\n            \"_id\": \"66f2f5daf43cc2c8e732bff2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T17:24:42.517Z\",\n            \"updatedAt\": \"2024-09-24T17:24:42.517Z\"\n        },\n        {\n            \"_id\": \"66f2973f2ebb86305d657d47\",\n            \"photoUrl\": \"https://unsplash.com/photos/DSuQmFV3SD0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxvbmJvYXJkaW5nfGVufDB8MHx8fDE2NzE2OTc4NjA\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Employee Onboarding Survey\",\n            \"description\": \"Gather feedback from your new hires post-onboarding. \",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T10:41:03.789Z\",\n            \"updatedAt\": \"2024-09-24T10:41:03.789Z\"\n        },\n        {\n            \"_id\": \"66f2962b2ebb86305d65687b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-7.jpg?alt=media&token=b659d97b-d3d3-42a1-9d0a-e88ff82d785e\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T10:36:27.042Z\",\n            \"updatedAt\": \"2024-09-24T10:36:27.042Z\"\n        },\n        {\n            \"_id\": \"66f2941f20254d96fa43e26b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T10:27:44.486Z\",\n            \"updatedAt\": \"2024-09-24T10:27:44.486Z\"\n        },\n        {\n            \"_id\": \"66f293a618bd2fd00201a21d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T10:25:43.338Z\",\n            \"updatedAt\": \"2024-09-24T10:25:43.338Z\"\n        },\n        {\n            \"_id\": \"66f196b36f2986527acfb0e6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-8.jpg?alt=media&token=0b331368-3445-483d-90c8-9b18605c9097\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-23T16:26:27.199Z\",\n            \"updatedAt\": \"2024-09-23T16:28:26.556Z\"\n        },\n        {\n            \"_id\": \"66f195e9187a3692437180d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-23T16:23:06.303Z\",\n            \"updatedAt\": \"2024-09-23T16:23:06.303Z\"\n        },\n        {\n            \"_id\": \"66ed95eff0a7850e00366f63\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-20T15:34:08.266Z\",\n            \"updatedAt\": \"2024-09-20T15:34:08.266Z\"\n        },\n        {\n            \"_id\": \"66ed883bfac9c91f552b37e6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-20T14:35:40.035Z\",\n            \"updatedAt\": \"2024-09-20T14:35:40.035Z\"\n        },\n        {\n            \"_id\": \"66ec1ad28ff83a7c3127decf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:36:35.261Z\",\n            \"updatedAt\": \"2024-09-19T12:36:35.261Z\"\n        },\n        {\n            \"_id\": \"66ec1ac68ff83a7c3127dd65\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:36:22.688Z\",\n            \"updatedAt\": \"2024-09-19T12:36:22.688Z\"\n        },\n        {\n            \"_id\": \"66ec1ab70d9229cc41203eb3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:36:08.217Z\",\n            \"updatedAt\": \"2024-09-19T12:36:08.217Z\"\n        },\n        {\n            \"_id\": \"66ec1854fa55ef191ed13d5e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:25:56.178Z\",\n            \"updatedAt\": \"2024-09-19T12:28:20.137Z\"\n        },\n        {\n            \"_id\": \"66ec188e37b2c65bec48372f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:26:55.394Z\",\n            \"updatedAt\": \"2024-09-19T12:26:55.394Z\"\n        },\n        {\n            \"_id\": \"66ec14330d9229cc411fd505\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:08:20.075Z\",\n            \"updatedAt\": \"2024-09-19T12:08:20.075Z\"\n        },\n        {\n            \"_id\": \"66eaed7179352ce0d884aebf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66eaed7179352ce0d884aebf%2F1726672369381%2F1726672372685%2Fviant_s_1726672372685.png?alt=media&token=4d9500a8-972b-4a02-8432-befb613da84d\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Viant & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T15:10:41.363Z\",\n            \"updatedAt\": \"2024-09-19T11:50:02.079Z\"\n        },\n        {\n            \"_id\": \"66eb238816442e24b3bb3a6d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T19:01:28.927Z\",\n            \"updatedAt\": \"2024-09-18T19:01:28.927Z\"\n        },\n        {\n            \"_id\": \"6509da86a72c240008fa3a68\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Marketing updates\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-19T17:29:42.766Z\",\n            \"updatedAt\": \"2024-09-18T16:01:23.457Z\"\n        },\n        {\n            \"_id\": \"66eae73788169181688f807d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T14:44:08.404Z\",\n            \"updatedAt\": \"2024-09-18T14:44:08.404Z\"\n        },\n        {\n            \"_id\": \"66ea9f17dceb7b95af78c62b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T09:36:24.719Z\",\n            \"updatedAt\": \"2024-09-18T09:36:24.719Z\"\n        },\n        {\n            \"_id\": \"66ea936ea30f00e87df9f9b0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660e67c47c511e33ba03f552%2F1712220256255%2F1712220260562%2Ftibber_1712220260562.jpeg?alt=media&token=b9899410-6b28-4248-a280-d2bb3b543766\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for Tibber\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T08:46:38.699Z\",\n            \"updatedAt\": \"2024-09-18T08:46:38.699Z\"\n        },\n        {\n            \"_id\": \"66e99280b2cb9a30a1eb2d49\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-17T14:30:24.776Z\",\n            \"updatedAt\": \"2024-09-17T14:30:24.776Z\"\n        },\n        {\n            \"_id\": \"66e93147ea28473c2b56b250\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66e93147ea28473c2b56b250%2F1726558730677%2F1726558734414%2FRGA_1726558734414.jpg?alt=media&token=6389924a-19c8-436e-9f5a-4a50e99cf854\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"RGA & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-17T07:35:35.840Z\",\n            \"updatedAt\": \"2024-09-17T07:54:25.744Z\"\n        },\n        {\n            \"_id\": \"66e92706f3d832bf57906a5b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-17T06:51:51.055Z\",\n            \"updatedAt\": \"2024-09-17T06:51:51.055Z\"\n        },\n        {\n            \"_id\": \"66e454ebaffda637cf0ea961\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66e454ebaffda637cf0ea961%2F1726240211779%2F1726240215381%2Flinklaters_logo_300x300_01_1726240215381.jpg?alt=media&token=209c184f-c25b-4f8c-a878-cd966c2f3261\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Linklaters & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-13T15:06:19.668Z\",\n            \"updatedAt\": \"2024-09-13T15:10:41.941Z\"\n        },\n        {\n            \"_id\": \"66e4544e157c0a1aa5be2feb\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-13T15:03:42.223Z\",\n            \"updatedAt\": \"2024-09-13T15:03:42.223Z\"\n        },\n        {\n            \"_id\": \"66e44c8faffda637cf0e574e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-13T14:30:40.216Z\",\n            \"updatedAt\": \"2024-09-13T14:30:40.216Z\"\n        },\n        {\n            \"_id\": \"66e3231ae35062731d416199\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-12T17:21:30.713Z\",\n            \"updatedAt\": \"2024-09-12T17:21:30.713Z\"\n        },\n        {\n            \"_id\": \"66e2b6c63ccae7ae59cc6714\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Augury\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-12T09:39:18.290Z\",\n            \"updatedAt\": \"2024-09-12T09:43:39.655Z\"\n        },\n        {\n            \"_id\": \"66e29703226bf06692b3d090\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-12T07:23:48.476Z\",\n            \"updatedAt\": \"2024-09-12T07:23:48.476Z\"\n        },\n        {\n            \"_id\": \"66e1b2b13bcb42a2318ec9d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T15:09:37.871Z\",\n            \"updatedAt\": \"2024-09-11T15:09:37.871Z\"\n        },\n        {\n            \"_id\": \"66e1abd43317e0774cd7c2c4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T14:40:21.264Z\",\n            \"updatedAt\": \"2024-09-11T14:40:21.264Z\"\n        },\n        {\n            \"_id\": \"66e19c5ab80c51d5af234999\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-7.jpg?alt=media&token=b659d97b-d3d3-42a1-9d0a-e88ff82d785e\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Leyton\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T13:34:18.414Z\",\n            \"updatedAt\": \"2024-09-11T13:34:45.450Z\"\n        },\n        {\n            \"_id\": \"66e19b195e4285adb4b5fd5c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T13:28:58.012Z\",\n            \"updatedAt\": \"2024-09-11T13:32:51.593Z\"\n        },\n        {\n            \"_id\": \"66e18e79f1212a4647656c0f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T12:35:06.484Z\",\n            \"updatedAt\": \"2024-09-11T12:35:06.484Z\"\n        },\n        {\n            \"_id\": \"66e166512df442d8c877f191\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011.jpg?alt=media&token=f61ab96f-d53a-4b53-a10c-98fd1bcafded\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"SumSub\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T09:43:45.694Z\",\n            \"updatedAt\": \"2024-09-11T09:53:45.101Z\"\n        },\n        {\n            \"_id\": \"66e162782df442d8c8779728\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T09:27:20.612Z\",\n            \"updatedAt\": \"2024-09-11T09:38:59.540Z\"\n        },\n        {\n            \"_id\": \"66e161c25e4285adb4b2576f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-11T09:24:19.193Z\",\n            \"updatedAt\": \"2024-09-11T09:24:19.193Z\"\n        },\n        {\n            \"_id\": \"66e09c7ee8b4e6df72da6240\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-10T19:22:38.904Z\",\n            \"updatedAt\": \"2024-09-10T19:22:38.904Z\"\n        },\n        {\n            \"_id\": \"66e08e51b65d83e055878005\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-10T18:22:10.129Z\",\n            \"updatedAt\": \"2024-09-10T18:22:10.129Z\"\n        },\n        {\n            \"_id\": \"66e06ff8e8b4e6df72da181b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-10T16:12:41.583Z\",\n            \"updatedAt\": \"2024-09-10T16:12:41.583Z\"\n        },\n        {\n            \"_id\": \"66e008011c58d54461c6f365\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F64ff1f551a0dd20008a3e421%2F1694441343353%2F1694441346108%2FETG%20LOGO-01%20(002).png?alt=media&token=960b1eb6-f0a9-4b48-9b31-8c40ab293581\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"ETG & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-10T08:49:05.934Z\",\n            \"updatedAt\": \"2024-09-10T08:49:39.742Z\"\n        },\n        {\n            \"_id\": \"66df273482ce5517c76afac6\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"q1\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T16:49:56.177Z\",\n            \"updatedAt\": \"2024-09-09T16:50:34.482Z\"\n        },\n        {\n            \"_id\": \"66df031482ce5517c768e060\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T14:15:48.248Z\",\n            \"updatedAt\": \"2024-09-09T14:17:22.927Z\"\n        },\n        {\n            \"_id\": \"66def7e382ce5517c7675cf2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T13:28:03.994Z\",\n            \"updatedAt\": \"2024-09-09T13:28:03.994Z\"\n        },\n        {\n            \"_id\": \"66db1ebe1d0c69b2955397a8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-06T15:24:47.954Z\",\n            \"updatedAt\": \"2024-09-06T15:24:47.954Z\"\n        },\n        {\n            \"_id\": \"66d9c0e37cf2be4c791fb12a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d9c0e37cf2be4c791fb12a%2F1725546929688%2F1725546932155%2Ftipalti_1725546932155.jpg?alt=media&token=6a994640-2535-4ae7-bfa9-29addbf112df\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Tipalti & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-05T14:32:03.686Z\",\n            \"updatedAt\": \"2024-09-05T14:53:36.576Z\"\n        },\n        {\n            \"_id\": \"66d991206d347d93fe6e8947\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d991206d347d93fe6e8947%2F1725534545475%2F1725534548322%2FPanorays_HALOCK_1_1725534548322.jpg?alt=media&token=de1315ed-7c44-4fcb-8e24-2129f51f037b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Panorays & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-05T11:08:16.350Z\",\n            \"updatedAt\": \"2024-09-05T14:31:55.858Z\"\n        },\n        {\n            \"_id\": \"66d9a9c586da9d29405d66c9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-05T12:53:26.578Z\",\n            \"updatedAt\": \"2024-09-05T12:53:26.578Z\"\n        },\n        {\n            \"_id\": \"66d96f245dd1cc0af6a0842e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-05T08:43:16.712Z\",\n            \"updatedAt\": \"2024-09-05T08:43:16.712Z\"\n        },\n        {\n            \"_id\": \"66d8a641c2d01a6994dfc7ee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-04T18:26:10.199Z\",\n            \"updatedAt\": \"2024-09-04T18:26:10.199Z\"\n        },\n        {\n            \"_id\": \"66d87b53ff22f547fb2e77d2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-04T15:23:00.333Z\",\n            \"updatedAt\": \"2024-09-04T15:23:16.332Z\"\n        },\n        {\n            \"_id\": \"66d87b42dad71ee2499f19fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-04T15:22:43.394Z\",\n            \"updatedAt\": \"2024-09-04T15:22:43.394Z\"\n        },\n        {\n            \"_id\": \"66d86e8bdad71ee2499e608a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-04T14:28:28.314Z\",\n            \"updatedAt\": \"2024-09-04T14:28:28.314Z\"\n        },\n        {\n            \"_id\": \"66d86079b4e13b01685cafe2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Coralogix\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-04T13:28:25.157Z\",\n            \"updatedAt\": \"2024-09-04T13:30:21.394Z\"\n        },\n        {\n            \"_id\": \"66d848e0dad71ee2499b0120\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-04T11:47:44.894Z\",\n            \"updatedAt\": \"2024-09-04T11:47:44.894Z\"\n        },\n        {\n            \"_id\": \"66d71af2b467afff2ec21871\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-03T14:19:31.575Z\",\n            \"updatedAt\": \"2024-09-03T14:19:31.575Z\"\n        },\n        {\n            \"_id\": \"66d7180c8df46c4842998d96\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-03T14:07:09.321Z\",\n            \"updatedAt\": \"2024-09-03T14:07:09.321Z\"\n        },\n        {\n            \"_id\": \"66d6f286d19e20aba786ae0d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-03T11:27:03.253Z\",\n            \"updatedAt\": \"2024-09-03T11:27:03.253Z\"\n        },\n        {\n            \"_id\": \"66d5a80a739352cf9936d3d2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-02T11:56:58.832Z\",\n            \"updatedAt\": \"2024-09-02T12:04:06.607Z\"\n        },\n        {\n            \"_id\": \"66d18c12ad3c936ddd9a32ff\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-30T09:08:35.248Z\",\n            \"updatedAt\": \"2024-08-30T09:08:35.248Z\"\n        },\n        {\n            \"_id\": \"66d0934e6f7ae6c318ba7334\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-29T15:27:10.444Z\",\n            \"updatedAt\": \"2024-08-29T15:27:10.444Z\"\n        },\n        {\n            \"_id\": \"66d0773df234252baeb2936b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-8.jpg?alt=media&token=c9dce079-5f9e-42f7-aeb3-65dcfc40e8c7\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Mirakl\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-29T13:27:25.890Z\",\n            \"updatedAt\": \"2024-08-29T13:32:05.686Z\"\n        },\n        {\n            \"_id\": \"66d02a35d06d4ca7a8d1208e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d02a35d06d4ca7a8d1208e%2F1724918350772%2F1724918353489%2Fobsidian_portfolio_thumb_500x281_1724918353489.jpg?alt=media&token=874c4933-52ed-413b-9e68-ef2ee3de8900\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Obsidian & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-29T07:58:45.381Z\",\n            \"updatedAt\": \"2024-08-29T08:00:55.394Z\"\n        },\n        {\n            \"_id\": \"66cf5c8764db4d33adc46799\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Team Building Training \",\n            \"description\": \"Give your team the tools to work better together and turn your office into a happy place.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T17:21:12.657Z\",\n            \"updatedAt\": \"2024-08-28T17:21:12.657Z\"\n        },\n        {\n            \"_id\": \"66cf54ff737bffe7cdfc37d0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T16:49:04.648Z\",\n            \"updatedAt\": \"2024-08-28T16:49:04.648Z\"\n        },\n        {\n            \"_id\": \"66cf4e58737bffe7cdfc260c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T16:20:41.096Z\",\n            \"updatedAt\": \"2024-08-28T16:20:41.096Z\"\n        },\n        {\n            \"_id\": \"66cf35635dd6ec40eac1e7fc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-4.jpg?alt=media&token=7a6d3672-4d6c-4cc2-a1f7-4f94714fee5a\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Axonius\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T14:34:11.572Z\",\n            \"updatedAt\": \"2024-08-28T14:38:35.607Z\"\n        },\n        {\n            \"_id\": \"66cf1900a38bdd52e8ee9e3e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Valmont & Juno Journey  (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T12:33:04.742Z\",\n            \"updatedAt\": \"2024-08-28T12:33:04.742Z\"\n        },\n        {\n            \"_id\": \"66ceeb55d4b96f104cea12df\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T09:18:14.139Z\",\n            \"updatedAt\": \"2024-08-28T09:18:14.139Z\"\n        },\n        {\n            \"_id\": \"66ccbcfe899f99c375e04958\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T17:35:59.798Z\",\n            \"updatedAt\": \"2024-08-26T17:35:59.798Z\"\n        },\n        {\n            \"_id\": \"66ccbbc346e62c7a51a032af\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T17:30:44.037Z\",\n            \"updatedAt\": \"2024-08-26T17:30:44.037Z\"\n        },\n        {\n            \"_id\": \"66cc9f80aefddacbd2d45ec9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T15:30:09.519Z\",\n            \"updatedAt\": \"2024-08-26T15:30:09.519Z\"\n        },\n        {\n            \"_id\": \"66cc806a899f99c375deffe4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Brandshield\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T13:17:30.124Z\",\n            \"updatedAt\": \"2024-08-26T13:17:48.256Z\"\n        },\n        {\n            \"_id\": \"66cc582a899f99c375ddc82b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T10:25:47.305Z\",\n            \"updatedAt\": \"2024-08-26T10:25:47.305Z\"\n        },\n        {\n            \"_id\": \"66c77b903a8c7fe0b22705b4\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Material from the Session\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-22T17:55:28.642Z\",\n            \"updatedAt\": \"2024-08-22T17:55:47.047Z\"\n        },\n        {\n            \"_id\": \"66c774a6979f2577b63b670d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-22T17:25:59.788Z\",\n            \"updatedAt\": \"2024-08-22T17:25:59.788Z\"\n        },\n        {\n            \"_id\": \"66c74aefa69b237f2b817109\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-22T14:28:00.506Z\",\n            \"updatedAt\": \"2024-08-22T14:28:00.506Z\"\n        },\n        {\n            \"_id\": \"66c73c69248aae47a67c1b17\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-22T13:26:01.074Z\",\n            \"updatedAt\": \"2024-08-22T13:31:56.245Z\"\n        },\n        {\n            \"_id\": \"66c5f6e8fe408f2f75cfc6d6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-21T14:17:13.435Z\",\n            \"updatedAt\": \"2024-08-21T14:17:13.435Z\"\n        },\n        {\n            \"_id\": \"66c5ec35f84bde5f86f7275d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-21T13:31:43.846Z\",\n            \"updatedAt\": \"2024-08-21T13:31:43.846Z\"\n        },\n        {\n            \"_id\": \"66c5e0824b72c8287e40e618\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Paul \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-21T12:41:38.859Z\",\n            \"updatedAt\": \"2024-08-21T12:42:16.757Z\"\n        },\n        {\n            \"_id\": \"66c5de09c268b1c1fa558898\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-21T12:31:06.292Z\",\n            \"updatedAt\": \"2024-08-21T12:31:06.292Z\"\n        },\n        {\n            \"_id\": \"66c59685371eb42d7537c73b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-21T07:25:57.869Z\",\n            \"updatedAt\": \"2024-08-21T07:25:57.869Z\"\n        },\n        {\n            \"_id\": \"66c5789aef9532c0e6f7b4b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-21T05:18:19.063Z\",\n            \"updatedAt\": \"2024-08-21T05:18:19.063Z\"\n        },\n        {\n            \"_id\": \"66c4fc03f84bde5f86ecbb71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-20T20:26:44.689Z\",\n            \"updatedAt\": \"2024-08-20T20:26:44.689Z\"\n        },\n        {\n            \"_id\": \"66c4d884ef9532c0e6f75496\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-20T17:55:16.573Z\",\n            \"updatedAt\": \"2024-08-20T17:55:16.573Z\"\n        },\n        {\n            \"_id\": \"66c355fe17c3ee816cf58a79\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-5.jpg?alt=media&token=5af11d40-7873-482b-96e7-57f66c62cca9\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-19T14:26:06.303Z\",\n            \"updatedAt\": \"2024-08-19T14:26:32.630Z\"\n        },\n        {\n            \"_id\": \"66c355c017c3ee816cf5894e\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-19T14:25:04.753Z\",\n            \"updatedAt\": \"2024-08-19T14:25:04.753Z\"\n        },\n        {\n            \"_id\": \"66c35169c07d135c64fdcdf8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-10.jpg?alt=media&token=e7641a47-e567-428a-9943-3158788bf034\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Flash training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-19T14:06:33.626Z\",\n            \"updatedAt\": \"2024-08-19T14:11:27.373Z\"\n        },\n        {\n            \"_id\": \"66c32d07b9b429664c461dbb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-7.jpg?alt=media&token=b659d97b-d3d3-42a1-9d0a-e88ff82d785e\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"LocusView\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-19T11:31:19.899Z\",\n            \"updatedAt\": \"2024-08-19T11:41:15.044Z\"\n        },\n        {\n            \"_id\": \"66c3189d51116e981e24df39\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-19T10:04:14.221Z\",\n            \"updatedAt\": \"2024-08-19T10:04:14.221Z\"\n        },\n        {\n            \"_id\": \"66be2c3904f0645da06c7e19\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Product release 2024\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-15T16:26:33.829Z\",\n            \"updatedAt\": \"2024-08-15T16:26:42.098Z\"\n        },\n        {\n            \"_id\": \"66be2c2b93cad56ce65b37ec\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-15T16:26:19.155Z\",\n            \"updatedAt\": \"2024-08-15T16:26:19.155Z\"\n        },\n        {\n            \"_id\": \"66be1622a5d5a159498b06c6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-7.jpg?alt=media&token=b659d97b-d3d3-42a1-9d0a-e88ff82d785e\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Flash content\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-15T14:52:18.906Z\",\n            \"updatedAt\": \"2024-08-15T14:56:31.996Z\"\n        },\n        {\n            \"_id\": \"66be108bec1e7ac41c8a114e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-15T14:28:27.952Z\",\n            \"updatedAt\": \"2024-08-15T14:28:27.952Z\"\n        },\n        {\n            \"_id\": \"66bde5874591e6953ce26a1c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-15T11:24:55.935Z\",\n            \"updatedAt\": \"2024-08-15T11:24:55.935Z\"\n        },\n        {\n            \"_id\": \"66bcdc4b390b30c88b9f87bd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-4.jpg?alt=media&token=66336249-4a18-4203-a2d0-5bb731b56eb0\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Sopheon\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-14T16:33:15.649Z\",\n            \"updatedAt\": \"2024-08-14T16:35:52.654Z\"\n        },\n        {\n            \"_id\": \"66bcce5daba2247c7ee0027e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-14T15:33:49.784Z\",\n            \"updatedAt\": \"2024-08-14T15:33:49.784Z\"\n        },\n        {\n            \"_id\": \"66bccb927ace1fa162a2b767\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-10.jpg?alt=media&token=4b8d36aa-5629-4df3-a5bb-55fd32c076bc\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Silvia training session\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-14T15:21:54.182Z\",\n            \"updatedAt\": \"2024-08-14T15:25:43.885Z\"\n        },\n        {\n            \"_id\": \"66bcb77f7ace1fa162a0e8b1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-9.jpg?alt=media&token=6f8f0e43-7798-4bfe-98d1-fffba8380474\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"demo\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-14T13:56:15.552Z\",\n            \"updatedAt\": \"2024-08-14T14:01:42.651Z\"\n        },\n        {\n            \"_id\": \"66bcb51d90226c817ff62fe3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"MHK event\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-14T13:46:05.530Z\",\n            \"updatedAt\": \"2024-08-14T13:54:07.694Z\"\n        },\n        {\n            \"_id\": \"66bb2a265731ff4d9e4eb96f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-13T09:40:55.274Z\",\n            \"updatedAt\": \"2024-08-13T09:40:55.274Z\"\n        },\n        {\n            \"_id\": \"66bb177c225d9a68434d6b41\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Jettbrains\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-13T08:21:16.880Z\",\n            \"updatedAt\": \"2024-08-13T08:26:44.764Z\"\n        },\n        {\n            \"_id\": \"66ba4370225d9a68434ab871\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-12T17:16:32.761Z\",\n            \"updatedAt\": \"2024-08-12T17:16:32.761Z\"\n        },\n        {\n            \"_id\": \"66a8bd83495835a1a3bac028\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-6.jpg?alt=media&token=b4bf6c14-a705-4996-95a4-cd7c119d6ace\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-30T10:16:35.653Z\",\n            \"updatedAt\": \"2024-08-12T17:00:21.352Z\"\n        },\n        {\n            \"_id\": \"66ba389879c2c17e92b67426\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New hire training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-12T16:30:16.852Z\",\n            \"updatedAt\": \"2024-08-12T16:30:54.750Z\"\n        },\n        {\n            \"_id\": \"66ba37cef21ebd682ae4a83b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-12T16:26:54.921Z\",\n            \"updatedAt\": \"2024-08-12T16:26:54.921Z\"\n        },\n        {\n            \"_id\": \"66ba1c4979c2c17e92b59f28\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-12T14:29:29.124Z\",\n            \"updatedAt\": \"2024-08-12T14:29:40.153Z\"\n        },\n        {\n            \"_id\": \"66ba1c021e7f6aa3057d5c7a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-12T14:28:18.801Z\",\n            \"updatedAt\": \"2024-08-12T14:28:18.801Z\"\n        },\n        {\n            \"_id\": \"66b5f04496969623d287845a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-09T10:32:37.564Z\",\n            \"updatedAt\": \"2024-08-09T10:32:37.564Z\"\n        },\n        {\n            \"_id\": \"66b3ac993f406ae2f5bd5b19\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-07T17:19:22.649Z\",\n            \"updatedAt\": \"2024-08-07T17:19:22.649Z\"\n        },\n        {\n            \"_id\": \"66b3a16b98e98546712fa68c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-07T16:31:40.282Z\",\n            \"updatedAt\": \"2024-08-07T16:31:40.282Z\"\n        },\n        {\n            \"_id\": \"66b3850715b656303c5312d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-07T14:30:31.838Z\",\n            \"updatedAt\": \"2024-08-07T14:30:31.838Z\"\n        },\n        {\n            \"_id\": \"66b2634a4209acf4b0273530\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Theresa\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T17:54:18.093Z\",\n            \"updatedAt\": \"2024-08-06T17:55:00.141Z\"\n        },\n        {\n            \"_id\": \"66b25fd7ee95c26e0fbeae28\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T17:39:36.362Z\",\n            \"updatedAt\": \"2024-08-06T17:39:36.362Z\"\n        },\n        {\n            \"_id\": \"66b22d668e01455a12bd8d77\",\n            \"photoUrl\": \"https://unsplash.com/photos/RLw-UC03Gwc/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHxjaGVja2xpc3R8ZW58MHwwfHx8MTY1ODIzMzYyMA\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"HR Checklist For Successful Onboarding \",\n            \"description\": \"A sample checklist to track new hire processes.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T14:04:22.288Z\",\n            \"updatedAt\": \"2024-08-06T14:04:30.775Z\"\n        },\n        {\n            \"_id\": \"66b229eaf5c5d4e694d7835e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T13:49:30.630Z\",\n            \"updatedAt\": \"2024-08-06T13:49:30.630Z\"\n        },\n        {\n            \"_id\": \"66b22554f5c5d4e694d761d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f37096d0c2e70007efa990%2F1676898884941%2F1676898891469%2FUpdate.png?alt=media&token=699951a0-da7f-4eb8-a433-f1a65bd61b6e\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Share Version Updates with Customer-Facing Teams\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T13:29:56.784Z\",\n            \"updatedAt\": \"2024-08-06T13:32:07.293Z\"\n        },\n        {\n            \"_id\": \"66b225238e01455a12bd3477\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T13:29:08.318Z\",\n            \"updatedAt\": \"2024-08-06T13:29:08.318Z\"\n        },\n        {\n            \"_id\": \"66b10c57e114efd0e41be3b6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T17:31:04.450Z\",\n            \"updatedAt\": \"2024-08-05T17:31:04.450Z\"\n        },\n        {\n            \"_id\": \"66b0f5112790b657c48cbbd9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Sigma training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T15:51:45.341Z\",\n            \"updatedAt\": \"2024-08-05T15:56:34.301Z\"\n        },\n        {\n            \"_id\": \"66b0d7c8e82ebe0f6104178b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-4.jpg?alt=media&token=66336249-4a18-4203-a2d0-5bb731b56eb0\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Ariel \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T13:46:48.140Z\",\n            \"updatedAt\": \"2024-08-05T15:55:46.505Z\"\n        },\n        {\n            \"_id\": \"66b0f48be82ebe0f61051820\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T15:49:31.710Z\",\n            \"updatedAt\": \"2024-08-05T15:49:31.710Z\"\n        },\n        {\n            \"_id\": \"66b0d1984e32da1bce59b2ba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T13:20:24.740Z\",\n            \"updatedAt\": \"2024-08-05T13:20:24.740Z\"\n        },\n        {\n            \"_id\": \"661e84c6b1018e3b3f9ad665\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660aceece39fbbe65be803dc%2F1711985239221%2F1711985245425%2Fend_1711985245425.png?alt=media&token=3c575648-04c2-4020-bf0f-ad7931fe50c4\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for Endava\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-16T14:01:42.867Z\",\n            \"updatedAt\": \"2024-08-05T09:32:49.514Z\"\n        },\n        {\n            \"_id\": \"66b084753bacfa8a93147a39\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T07:51:17.825Z\",\n            \"updatedAt\": \"2024-08-05T07:51:17.825Z\"\n        },\n        {\n            \"_id\": \"66a7d37df296727752563abd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66a7d37df296727752563abd%2F1722274800164%2F1722274802744%2Facuity_1722274802744.jpg?alt=media&token=61574b12-1a85-41ca-9186-acccc43e8fdc\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"acuity & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T17:38:05.957Z\",\n            \"updatedAt\": \"2024-08-02T14:42:49.185Z\"\n        },\n        {\n            \"_id\": \"66ace79b771cc35271956926\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ace79b771cc35271956926%2F1722607714300%2F1722607719705%2Fmhk_1722607719705.png?alt=media&token=b2a8c423-e37e-4a4b-9d40-e1e971fd71a7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"MedHOK & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-02T14:05:15.083Z\",\n            \"updatedAt\": \"2024-08-02T14:26:47.665Z\"\n        },\n        {\n            \"_id\": \"66acdedfaaee73ba1a45a18c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-02T13:27:59.621Z\",\n            \"updatedAt\": \"2024-08-02T13:34:12.907Z\"\n        },\n        {\n            \"_id\": \"66accaca0f62a49ae077bbf4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-02T12:02:18.570Z\",\n            \"updatedAt\": \"2024-08-02T12:02:18.570Z\"\n        },\n        {\n            \"_id\": \"66abbfb0f594cf54fd54bdd1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66abbfb0f594cf54fd54bdd1%2F1722531856092%2F1722531910516%2Fdigital_room_inc__logo_1722531910516.jpeg?alt=media&token=84ae955f-b283-44e2-a719-0a8bf03c6c7b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Digital Room & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-01T17:02:40.523Z\",\n            \"updatedAt\": \"2024-08-01T17:12:45.272Z\"\n        },\n        {\n            \"_id\": \"66abade90509f4557a23cbbc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-01T15:46:49.679Z\",\n            \"updatedAt\": \"2024-08-01T15:46:49.679Z\"\n        },\n        {\n            \"_id\": \"66ab6f2553f6ea203d42c16d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-2.jpg?alt=media&token=45b099d9-1818-48ea-9a2e-116fcb83f7c0\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Tsvetan Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-01T11:19:01.333Z\",\n            \"updatedAt\": \"2024-08-01T11:21:43.572Z\"\n        },\n        {\n            \"_id\": \"66aa87dd46177cea7ddaa5ed\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T18:52:14.390Z\",\n            \"updatedAt\": \"2024-07-31T18:52:14.390Z\"\n        },\n        {\n            \"_id\": \"66aa84b19acfb51f3185d733\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T18:38:42.205Z\",\n            \"updatedAt\": \"2024-07-31T18:38:42.205Z\"\n        },\n        {\n            \"_id\": \"66aa52a2f921c7f981c3eb73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T15:05:07.138Z\",\n            \"updatedAt\": \"2024-07-31T15:05:07.138Z\"\n        },\n        {\n            \"_id\": \"66aa38793f5d9968384faf15\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T13:13:30.418Z\",\n            \"updatedAt\": \"2024-07-31T13:13:30.418Z\"\n        },\n        {\n            \"_id\": \"66aa27a38ef7fe77401cd6cb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T12:01:39.330Z\",\n            \"updatedAt\": \"2024-07-31T12:01:39.330Z\"\n        },\n        {\n            \"_id\": \"66aa27164d8081da16b58bc8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6240581fbe21116a132fa5f1%2F1652008868551%2FCapture%20d%E2%80%99e%CC%81cran%202022-05-08%20a%CC%80%2012.23.18.png?alt=media&token=27aa4abf-e6c4-422c-8109-1f0ac7b46775\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Your development path\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T11:59:20.102Z\",\n            \"updatedAt\": \"2024-07-31T12:00:07.546Z\"\n        },\n        {\n            \"_id\": \"66aa1cb13f5d9968384dd076\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6240581fbe21116a132fa5f1%2F1652008868551%2FCapture%20d%E2%80%99e%CC%81cran%202022-05-08%20a%CC%80%2012.23.18.png?alt=media&token=27aa4abf-e6c4-422c-8109-1f0ac7b46775\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"The Manager Toolkit\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T11:14:58.981Z\",\n            \"updatedAt\": \"2024-07-31T11:14:58.981Z\"\n        },\n        {\n            \"_id\": \"66a8bdc8495835a1a3bacbe2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-5.jpg?alt=media&token=5af11d40-7873-482b-96e7-57f66c62cca9\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Menora\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-30T10:17:44.333Z\",\n            \"updatedAt\": \"2024-07-30T10:29:24.290Z\"\n        },\n        {\n            \"_id\": \"66a8baee7284e2417edee852\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-30T10:05:35.121Z\",\n            \"updatedAt\": \"2024-07-30T10:09:19.541Z\"\n        },\n        {\n            \"_id\": \"66a7dfed3a8ada57966d7e60\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T18:31:09.710Z\",\n            \"updatedAt\": \"2024-07-29T18:31:09.710Z\"\n        },\n        {\n            \"_id\": \"66a7df673a8ada57966d7da1\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T18:28:55.315Z\",\n            \"updatedAt\": \"2024-07-29T18:28:55.315Z\"\n        },\n        {\n            \"_id\": \"669fd36c8afc5cd1ae54fb0f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669fd36c8afc5cd1ae54fb0f%2F1721750440829%2F1721750443462%2Fpub_1721750443462.png?alt=media&token=90ec0cf1-a59f-478f-b23d-ffcfebdd509d\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"PubMatic & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T15:59:40.818Z\",\n            \"updatedAt\": \"2024-07-29T17:38:02.101Z\"\n        },\n        {\n            \"_id\": \"66a7c21fd2e27eaa2125d2b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T16:24:00.042Z\",\n            \"updatedAt\": \"2024-07-29T16:24:00.042Z\"\n        },\n        {\n            \"_id\": \"66a7b719420bee6e3f7af735\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-3.jpg?alt=media&token=a46c2b0f-1c6b-43a1-afc4-bdb1affd6211\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T15:36:57.615Z\",\n            \"updatedAt\": \"2024-07-29T15:38:04.543Z\"\n        },\n        {\n            \"_id\": \"66a7b4e1d5b82049d1c1568f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T15:27:30.388Z\",\n            \"updatedAt\": \"2024-07-29T15:27:30.388Z\"\n        },\n        {\n            \"_id\": \"66a7b32b420bee6e3f7ad1b7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T15:20:12.040Z\",\n            \"updatedAt\": \"2024-07-29T15:20:12.040Z\"\n        },\n        {\n            \"_id\": \"66a7a2032beae2be581ce9ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T14:06:59.250Z\",\n            \"updatedAt\": \"2024-07-29T14:07:18.648Z\"\n        },\n        {\n            \"_id\": \"66a79fddb8bcbe338faeb1af\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-8.jpg?alt=media&token=0b331368-3445-483d-90c8-9b18605c9097\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T13:57:49.467Z\",\n            \"updatedAt\": \"2024-07-29T13:57:49.467Z\"\n        },\n        {\n            \"_id\": \"66a760fbc8a23caffe4d58ab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T09:29:31.840Z\",\n            \"updatedAt\": \"2024-07-29T09:29:31.840Z\"\n        },\n        {\n            \"_id\": \"66a7543e8505fafc69090965\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-6.jpg?alt=media&token=b4bf6c14-a705-4996-95a4-cd7c119d6ace\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T08:35:10.833Z\",\n            \"updatedAt\": \"2024-07-29T08:35:53.630Z\"\n        },\n        {\n            \"_id\": \"66a752a38505fafc6908d317\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-6.jpg?alt=media&token=836de927-f967-4d4c-9a53-d5f21b490b72\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"ger\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T08:28:19.971Z\",\n            \"updatedAt\": \"2024-07-29T08:30:25.745Z\"\n        },\n        {\n            \"_id\": \"66a28b6b8e9d2a5d6679edef\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-25T17:29:15.997Z\",\n            \"updatedAt\": \"2024-07-25T17:29:15.997Z\"\n        },\n        {\n            \"_id\": \"66a2605fd72e138ce3b38b48\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-25T14:25:36.293Z\",\n            \"updatedAt\": \"2024-07-25T14:25:36.293Z\"\n        },\n        {\n            \"_id\": \"66a2265a45b224f4e3bff049\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection @ natco \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-25T10:18:02.001Z\",\n            \"updatedAt\": \"2024-07-25T10:18:15.017Z\"\n        },\n        {\n            \"_id\": \"669ffb0f8afc5cd1ae553cd0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"IGEL\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T18:48:47.844Z\",\n            \"updatedAt\": \"2024-07-23T18:52:21.348Z\"\n        },\n        {\n            \"_id\": \"6697ce2c2ac9f84fa981479a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Welcome to your learning path\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T13:59:15.687Z\",\n            \"updatedAt\": \"2024-07-23T17:58:49.962Z\"\n        },\n        {\n            \"_id\": \"669fe999a966c2eca1dabaed\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-8.jpg?alt=media&token=c9dce079-5f9e-42f7-aeb3-65dcfc40e8c7\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T17:34:17.126Z\",\n            \"updatedAt\": \"2024-07-23T17:37:34.741Z\"\n        },\n        {\n            \"_id\": \"669fd36b336a05829a57318c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668eab1e2e601ced2156fec1%2F1720626364366%2F1720626367143%2FOne_Inc_Partner_Logo_640x360_MC6J3F3G3K5NC3JPIOAUVYIFLCAQ_1720626367144.jpg?alt=media&token=d04bd98d-2777-4557-9369-107d1e5ec192\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"OneInc & Juno Journey     (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T15:59:39.870Z\",\n            \"updatedAt\": \"2024-07-23T15:59:39.870Z\"\n        },\n        {\n            \"_id\": \"669fcde3a966c2eca1da80bb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T15:36:05.517Z\",\n            \"updatedAt\": \"2024-07-23T15:36:05.517Z\"\n        },\n        {\n            \"_id\": \"669fa98ea0ff6123d064655f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-8.jpg?alt=media&token=0b331368-3445-483d-90c8-9b18605c9097\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"hjhjljhl;hjl\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T13:01:02.546Z\",\n            \"updatedAt\": \"2024-07-23T13:01:06.812Z\"\n        },\n        {\n            \"_id\": \"669fa93ba2a2172538753c96\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-7.jpg?alt=media&token=bb32770c-9bab-418a-aa6e-c90079f67a48\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"hjkjkhlhjklhjkhjkl\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T12:59:39.071Z\",\n            \"updatedAt\": \"2024-07-23T12:59:47.428Z\"\n        },\n        {\n            \"_id\": \"669fa45ea0ff6123d063c682\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T12:38:54.991Z\",\n            \"updatedAt\": \"2024-07-23T12:38:54.991Z\"\n        },\n        {\n            \"_id\": \"669a2ba586105e7f02b3cd18\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Alma L&D\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-19T09:02:29.101Z\",\n            \"updatedAt\": \"2024-07-19T09:06:08.272Z\"\n        },\n        {\n            \"_id\": \"669963582d9affa55ab577d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669963582d9affa55ab577d9%2F1721328645179%2F1721328648013%2Fteneo_og_placeholder_1721328648013.avif?alt=media&token=5e7a2ee1-209b-404a-9617-5bc79af148e8\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Teneo & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T18:47:52.438Z\",\n            \"updatedAt\": \"2024-07-18T19:08:22.594Z\"\n        },\n        {\n            \"_id\": \"6699320c2d9affa55ab5175b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T15:17:34.459Z\",\n            \"updatedAt\": \"2024-07-18T15:17:34.459Z\"\n        },\n        {\n            \"_id\": \"669929562dcd98971aeef020\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T14:40:24.970Z\",\n            \"updatedAt\": \"2024-07-18T14:40:24.970Z\"\n        },\n        {\n            \"_id\": \"669928325f03fbeb5c5f3956\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T14:35:32.771Z\",\n            \"updatedAt\": \"2024-07-18T14:35:32.771Z\"\n        },\n        {\n            \"_id\": \"669924f55f03fbeb5c5f04f2\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T14:21:41.726Z\",\n            \"updatedAt\": \"2024-07-18T14:21:41.726Z\"\n        },\n        {\n            \"_id\": \"66991aa447b7eb22636cd4ea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Keepet & Juno Journey   (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T13:37:40.181Z\",\n            \"updatedAt\": \"2024-07-18T13:37:46.949Z\"\n        },\n        {\n            \"_id\": \"6698f8a07be4229f4f026d7a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T11:12:35.801Z\",\n            \"updatedAt\": \"2024-07-18T11:12:35.801Z\"\n        },\n        {\n            \"_id\": \"6698da6301d7e41348dda673\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Leadership program \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T09:03:31.379Z\",\n            \"updatedAt\": \"2024-07-18T09:03:56.553Z\"\n        },\n        {\n            \"_id\": \"6698d9937be4229f4f0075a6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T09:00:04.985Z\",\n            \"updatedAt\": \"2024-07-18T09:00:04.985Z\"\n        },\n        {\n            \"_id\": \"6697e3b5b7c65b0a26a74392\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T15:31:03.348Z\",\n            \"updatedAt\": \"2024-07-17T15:31:03.348Z\"\n        },\n        {\n            \"_id\": \"6697e2292ac9f84fa9826f2f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T15:24:25.824Z\",\n            \"updatedAt\": \"2024-07-17T15:27:21.893Z\"\n        },\n        {\n            \"_id\": \"6697e24759a71c0e49e10ce9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626e94b4a167f1aad15a1554%2F1657198879608%2F1657198884322%2Fone%20on%20one%20meeting%20guidelines.png?alt=media&token=7edfe4d8-f03d-4949-8222-5c363e692500\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"1:1 Meeting Guidelines\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T15:24:57.902Z\",\n            \"updatedAt\": \"2024-07-17T15:24:57.902Z\"\n        },\n        {\n            \"_id\": \"6697e19a4d11da96a2f80e76\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T15:22:03.000Z\",\n            \"updatedAt\": \"2024-07-17T15:22:03.000Z\"\n        },\n        {\n            \"_id\": \"6697d4a0b7c65b0a26a65598\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-2.jpg?alt=media&token=09eed7ef-42e5-4f1f-8bad-060878e440ae\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Aviation software 101\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T14:26:40.176Z\",\n            \"updatedAt\": \"2024-07-17T14:29:31.473Z\"\n        },\n        {\n            \"_id\": \"6697d2d859a71c0e49e0416b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T14:19:06.944Z\",\n            \"updatedAt\": \"2024-07-17T14:19:06.944Z\"\n        },\n        {\n            \"_id\": \"6697ce0a2ac9f84fa9814470\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T13:58:38.142Z\",\n            \"updatedAt\": \"2024-07-17T13:58:38.142Z\"\n        },\n        {\n            \"_id\": \"6697cdf556f536206dbb65ad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T13:58:15.634Z\",\n            \"updatedAt\": \"2024-07-17T13:58:15.634Z\"\n        },\n        {\n            \"_id\": \"6697c75c4d11da96a2f66f98\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T13:30:06.958Z\",\n            \"updatedAt\": \"2024-07-17T13:30:06.958Z\"\n        },\n        {\n            \"_id\": \"669790a7ace4b54f8640b378\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T09:36:41.002Z\",\n            \"updatedAt\": \"2024-07-17T09:36:41.002Z\"\n        },\n        {\n            \"_id\": \"6696aacbb47767f3ee37afb1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-3.jpg?alt=media&token=a46c2b0f-1c6b-43a1-afc4-bdb1affd6211\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Sales training\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-16T17:15:55.549Z\",\n            \"updatedAt\": \"2024-07-16T17:16:43.917Z\"\n        },\n        {\n            \"_id\": \"6696924475e8b7127e9e2c19\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-16T15:31:19.741Z\",\n            \"updatedAt\": \"2024-07-16T15:31:19.741Z\"\n        },\n        {\n            \"_id\": \"66961f00d3bb4c4fc375f3ae\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-16T07:19:31.154Z\",\n            \"updatedAt\": \"2024-07-16T07:19:31.154Z\"\n        },\n        {\n            \"_id\": \"66961ef60604367a1480e6f3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-16T07:19:29.270Z\",\n            \"updatedAt\": \"2024-07-16T07:19:29.270Z\"\n        },\n        {\n            \"_id\": \"66953d1b0413c3e34f356a9a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-15T15:15:42.998Z\",\n            \"updatedAt\": \"2024-07-15T15:15:42.998Z\"\n        },\n        {\n            \"_id\": \"669534c73d8a849e489cc7ed\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-15T14:40:10.102Z\",\n            \"updatedAt\": \"2024-07-15T14:40:10.102Z\"\n        },\n        {\n            \"_id\": \"66952b6b54866d4429c98aac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"scorm example 2\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-15T14:00:11.729Z\",\n            \"updatedAt\": \"2024-07-15T14:01:14.800Z\"\n        },\n        {\n            \"_id\": \"6694faca3a431d08d790a858\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-15T10:32:49.152Z\",\n            \"updatedAt\": \"2024-07-15T10:32:49.152Z\"\n        },\n        {\n            \"_id\": \"6683c60edd8bbcd5a0a04b08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c60d5a701da7421345e5%2Fcrea%20una%20estrategia%20go-to-market%20en%203%20pasos.webp?alt=media&token=bfa7bcad-b8a8-4dbd-bec4-29ad8078d081\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"What is GTM Strategy?\",\n            \"description\": \"Proven 5 layer approach for developing your GTM strategy.\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:19:10.203Z\",\n            \"updatedAt\": \"2024-07-12T11:56:22.338Z\"\n        },\n        {\n            \"_id\": \"6683c6288c50dcfe94b8d0d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c6275a701da7421345e6%2Fcrea%20una%20estrategia%20go-to-market%20en%203%20pasos.webp?alt=media&token=ac31b3ad-b7e6-45ca-b82c-beec31966ff9\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"A Plan Is Not a Strategy \",\n            \"description\": \"A comprehensive plan—with goals, initiatives, and budgets–is comforting. But starting with a plan is a terrible way to make strategy. Roger Martin, former de...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:19:36.382Z\",\n            \"updatedAt\": \"2024-07-12T11:56:12.365Z\"\n        },\n        {\n            \"_id\": \"669027d0606682eb0c32610b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-11T18:43:31.494Z\",\n            \"updatedAt\": \"2024-07-11T18:43:31.494Z\"\n        },\n        {\n            \"_id\": \"669010980d9bec1c348459fd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-11T17:04:26.506Z\",\n            \"updatedAt\": \"2024-07-11T17:04:26.506Z\"\n        },\n        {\n            \"_id\": \"668ff96a0de4eb157038640a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-11T15:25:32.586Z\",\n            \"updatedAt\": \"2024-07-11T15:25:32.586Z\"\n        },\n        {\n            \"_id\": \"668fe7486cb43133c13256a0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product A Cert\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-11T14:08:08.941Z\",\n            \"updatedAt\": \"2024-07-11T14:10:08.589Z\"\n        },\n        {\n            \"_id\": \"668f84b15803d99827ba4061\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-11T07:07:32.271Z\",\n            \"updatedAt\": \"2024-07-11T07:07:32.271Z\"\n        },\n        {\n            \"_id\": \"668ecc192ec47393c8614633\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T17:59:53.924Z\",\n            \"updatedAt\": \"2024-07-10T17:59:53.924Z\"\n        },\n        {\n            \"_id\": \"668eaecd2e601ced21570f48\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T15:54:53.857Z\",\n            \"updatedAt\": \"2024-07-10T15:55:09.095Z\"\n        },\n        {\n            \"_id\": \"668e9c0ccbdb363e2a4a3b52\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T14:35:06.839Z\",\n            \"updatedAt\": \"2024-07-10T14:35:06.839Z\"\n        },\n        {\n            \"_id\": \"668e9bfa1345a4d17d6e3dcc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T14:35:01.569Z\",\n            \"updatedAt\": \"2024-07-10T14:35:01.569Z\"\n        },\n        {\n            \"_id\": \"668e9bf518e8ddeedc7cb4b0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T14:34:58.074Z\",\n            \"updatedAt\": \"2024-07-10T14:34:58.074Z\"\n        },\n        {\n            \"_id\": \"668e992c7c275eac7ac6bb5d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T14:22:42.443Z\",\n            \"updatedAt\": \"2024-07-10T14:22:42.443Z\"\n        },\n        {\n            \"_id\": \"668e8c16666c2abcf785b5ca\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T13:26:53.042Z\",\n            \"updatedAt\": \"2024-07-10T13:26:53.042Z\"\n        },\n        {\n            \"_id\": \"668e49735b9fd500bfc5a259\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Minute Media\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T08:42:27.185Z\",\n            \"updatedAt\": \"2024-07-10T08:42:56.084Z\"\n        },\n        {\n            \"_id\": \"668d82772e601ced214dd085\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-09T18:33:30.156Z\",\n            \"updatedAt\": \"2024-07-09T18:33:30.156Z\"\n        },\n        {\n            \"_id\": \"668d12e1018f8caedbe5b39c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-09T10:37:27.837Z\",\n            \"updatedAt\": \"2024-07-09T10:37:27.837Z\"\n        },\n        {\n            \"_id\": \"668bf2bafee85e4a34429e9c\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-08T14:07:54.740Z\",\n            \"updatedAt\": \"2024-07-08T14:07:54.740Z\"\n        },\n        {\n            \"_id\": \"668be7b418fab2dcb9c2de3c\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-08T13:20:52.154Z\",\n            \"updatedAt\": \"2024-07-08T13:20:52.154Z\"\n        },\n        {\n            \"_id\": \"6687cdfc78a7e637e956d769\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-05T10:42:06.739Z\",\n            \"updatedAt\": \"2024-07-05T10:42:06.739Z\"\n        },\n        {\n            \"_id\": \"6686b79e2a7c8f90fd8e69e2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T14:54:27.127Z\",\n            \"updatedAt\": \"2024-07-04T14:54:27.127Z\"\n        },\n        {\n            \"_id\": \"6686b73e1e1bcd43132238b6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T14:52:52.785Z\",\n            \"updatedAt\": \"2024-07-04T14:52:52.785Z\"\n        },\n        {\n            \"_id\": \"6686b1e256b0be104d97a94d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T14:29:56.807Z\",\n            \"updatedAt\": \"2024-07-04T14:29:56.807Z\"\n        },\n        {\n            \"_id\": \"6683cba3d96a7ec87855a640\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cba3d96a7ec87855a640%2FHI9M.gif?alt=media&token=0a33ae8b-aabc-41ae-b9c2-6ce00e95c4b2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Converting Visualforce page to Lightning Web Components - YouTube\",\n            \"description\": \"Converting Visualforce page to Lightning Web ComponentsA Lightning web component is a standardized way of creating encapsulated, reusable user interface elem...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:42:59.023Z\",\n            \"updatedAt\": \"2024-07-04T11:59:18.232Z\"\n        },\n        {\n            \"_id\": \"6683cb94323a87b07b5ce997\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cb94323a87b07b5ce997%2FHI9M.gif?alt=media&token=d918a349-80eb-4077-a7ed-adce331f3d06\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Create Lightning Aura component through developer console - Salesforce - YouTube\",\n            \"description\": \"In this video, I discuss how we can create a new lightning aura component through the developer console.This video is to answer one of the community user's q...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:42:44.466Z\",\n            \"updatedAt\": \"2024-07-04T11:58:31.664Z\"\n        },\n        {\n            \"_id\": \"6683cb7ac594e6875ea09bb7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cb7ac594e6875ea09bb7%2FHI9M.gif?alt=media&token=ee9707d7-03dd-4d88-b173-5a55034d79cd\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Salesforce CRM Full Training Tutorial For Beginners | 2022 - YouTube\",\n            \"description\": \"Need Help With Salesforce? Check Out – https://www.crmcrew.comIn this video I explain how to use the key features inside Salesforce CRM. 00:00 - Intro00:49 -...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:42:18.671Z\",\n            \"updatedAt\": \"2024-07-04T11:58:18.727Z\"\n        },\n        {\n            \"_id\": \"6683cbcff5ed976346cc94e4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cbcff5ed976346cc94e4%2F5ebc2a49a428098290267716_ezgif.com-optimize%20(18).gif?alt=media&token=a9ba74bc-614f-4c1d-b350-3d1b747f6959\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Create Powerful Sales Messaging - YouTube\",\n            \"description\": \"Here is a link to the complete SMART Sales System training program - https://youtube.com/playlist?list=PLoUVJsDQgZIIDinZ2l865qEhABzjBrndfTry Sales Simulator ...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:43:43.436Z\",\n            \"updatedAt\": \"2024-07-04T11:57:36.138Z\"\n        },\n        {\n            \"_id\": \"6683cbc2323a87b07b5ceb2e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cbc2323a87b07b5ceb2e%2F5ebc2a49a428098290267716_ezgif.com-optimize%20(18).gif?alt=media&token=ada78d1a-1183-4974-a904-23e0d559db67\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"The Best Way to Write a Sales Message - YouTube\",\n            \"description\": \"Mario Martinez Jr., CEO and Founder of Vengreso, describes the PVC Sales Methodology for sales prospecting. PVC stands for Personalization, Value, Call to Ac...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:43:30.125Z\",\n            \"updatedAt\": \"2024-07-04T11:57:21.914Z\"\n        },\n        {\n            \"_id\": \"6683cbb5123a0e16deeabb01\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cbb5123a0e16deeabb01%2F5ebc2a49a428098290267716_ezgif.com-optimize%20(18).gif?alt=media&token=c4295082-9d2f-4534-9c5a-3c8c52c8af6f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Develop A Successful Sales Messaging Strategy Using Unconsidered Needs - YouTube\",\n            \"description\": \"Develop a successful marketing and sales message for your prospects that sets you apart from the competition and disrupts your buyer’s status quo. In this vi...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:43:17.700Z\",\n            \"updatedAt\": \"2024-07-04T11:56:54.460Z\"\n        },\n        {\n            \"_id\": \"651d3d703cd0590009a56c6d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anonymous Survey example\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-10-04T10:24:48.375Z\",\n            \"updatedAt\": \"2024-07-03T14:17:23.348Z\"\n        },\n        {\n            \"_id\": \"659d6b12b6aad6074eb88ed6\",\n            \"photoUrl\": \"https://unsplash.com/photos/12eHC6FxPyg/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHw4fHxmb29kfGVufDB8MHx8fDE3MDQ4MTU2NTZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"do you want food?\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-09T15:49:38.884Z\",\n            \"updatedAt\": \"2024-07-03T14:16:33.998Z\"\n        },\n        {\n            \"_id\": \"6685234ff5ed976346d55ba7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-03T10:09:19.050Z\",\n            \"updatedAt\": \"2024-07-03T10:09:19.050Z\"\n        },\n        {\n            \"_id\": \"667960ff30b7081b8c819d05\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-3.jpg?alt=media&token=a46c2b0f-1c6b-43a1-afc4-bdb1affd6211\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"sdfsdf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T12:05:19.372Z\",\n            \"updatedAt\": \"2024-07-02T12:00:46.616Z\"\n        },\n        {\n            \"_id\": \"6683c762456f669be1e95d47\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c748c845f5816a4705b4%2Fgiphy.gif?alt=media&token=7b229ce0-4733-469b-9afd-05dfdc861229\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anatomy of the Win: Company C\",\n            \"description\": \"Take a look how Juno Journey helps SMB's to provide personalized learning experience to their teams and a personal growth plan to each individual.\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:24:50.768Z\",\n            \"updatedAt\": \"2024-07-02T09:46:23.239Z\"\n        },\n        {\n            \"_id\": \"6683c6e7123a0e16deea77f8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c6e55a701da7421345e9%2Fgiphy.gif?alt=media&token=ef9bcb09-236d-42c0-b875-2637f6818ae9\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anatomy of the Win: Company B\",\n            \"description\": \"Meagan Davis, the Director of Sales Enablement at Hunters, shares Hunters' success story with Juno Journey. Hunters discovered the key to unlocking their tea...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:22:47.317Z\",\n            \"updatedAt\": \"2024-07-02T09:46:11.767Z\"\n        },\n        {\n            \"_id\": \"6683c6cfdd8bbcd5a0a0558a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c6bf5a701da7421345e8%2Fgiphy.gif?alt=media&token=d794d640-68e8-4e4a-87b1-8baea4bd94f5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anatomy of the Win: Company A\",\n            \"description\": \"\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:22:23.474Z\",\n            \"updatedAt\": \"2024-07-02T09:46:00.534Z\"\n        },\n        {\n            \"_id\": \"6683c5f0dd8bbcd5a0a03fce\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:18:44.248Z\",\n            \"updatedAt\": \"2024-07-02T09:18:44.248Z\"\n        },\n        {\n            \"_id\": \"6683c5d3c594e6875ea03d0a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c5d25a701da7421345e4%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=f9b588d9-1bc7-4c91-908b-bf625e4e203d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Interview “Almost” Anyone | Mike Dronkers | TEDxHumboldtBay - YouTube\",\n            \"description\": \"How to Interview “Almost” AnyoneMike Dronkers is the program director, music director, and mid-day host at KHUM-FM. Dronkers’ popular radio program has a dev...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:18:11.355Z\",\n            \"updatedAt\": \"2024-07-02T09:18:11.355Z\"\n        },\n        {\n            \"_id\": \"6683c5ab687ecfbf73c12c2d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c5a65a701da7421345e3%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=ce617c37-4d42-49a7-b75c-3c827f82ec66\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"TOP 21 QUICK ANSWERS TO JOB INTERVIEW QUESTIONS! - YouTube\",\n            \"description\": \"TOP 21 QUICK ANSWERS TO JOB INTERVIEW QUESTIONS by Richard McMunn of: : https://passmyinterview.com/21-short-answers-to-interview-questions/#interviews #inte...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:17:31.181Z\",\n            \"updatedAt\": \"2024-07-02T09:17:31.181Z\"\n        },\n        {\n            \"_id\": \"6683c563123a0e16deea5e85\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:16:25.898Z\",\n            \"updatedAt\": \"2024-07-02T09:16:25.898Z\"\n        },\n        {\n            \"_id\": \"6683c51c8c50dcfe94b8b27a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c51c8c50dcfe94b8b27a%2Fphoto-1553484771-371a605b060b.jpeg?alt=media&token=05c983c8-9c95-4382-aaba-3fcb116cce9a\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"\\\"How to structure an effective sales story\\\" - Mike Adams  (Talking Sales 253 ) - YouTube\",\n            \"description\": \"Stories sell, yet only if they are structured properly.In this 5 minute discussion I asked expert sales storyteller, Mike Adams, how to structure our stories...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:15:08.856Z\",\n            \"updatedAt\": \"2024-07-02T09:15:59.852Z\"\n        },\n        {\n            \"_id\": \"6683c503323a87b07b5c955d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c503323a87b07b5c955d%2Fphoto-1553484771-371a605b060b.jpeg?alt=media&token=6c1fdaa7-d6f3-49a0-a4b2-24166b6cd950\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Business Storytelling Made Easy | Kelly Parker | TEDxBalchStreet - YouTube\",\n            \"description\": \"In this talk, you will learn why stories are an invaluable tool to shape consumers’ mindset, beliefs and behavior. Then, you will learn a simple, 4-step proc...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:14:43.052Z\",\n            \"updatedAt\": \"2024-07-02T09:15:40.854Z\"\n        },\n        {\n            \"_id\": \"6683c3ee5a701da7421345e2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8fd7961516000949b6e5%2F1708522991425%2F1708522997463%2Fleadership_1708522997463.gif?alt=media&token=aa921798-a5de-4a0d-8bbc-45909515bc4d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Intro To Leadership 201\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:10:24.141Z\",\n            \"updatedAt\": \"2024-07-02T09:13:24.416Z\"\n        },\n        {\n            \"_id\": \"6683c39d5a701da7421345e1\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A More Effective Communicator (Advanced)\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:09:18.029Z\",\n            \"updatedAt\": \"2024-07-02T09:09:26.663Z\"\n        },\n        {\n            \"_id\": \"6683c35c7d44389ade8b8f78\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A More Effective Communicator\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:07:55.585Z\",\n            \"updatedAt\": \"2024-07-02T09:07:55.585Z\"\n        },\n        {\n            \"_id\": \"6683c2f6d96a7ec87854cdcf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Day 1\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:58.179Z\",\n            \"updatedAt\": \"2024-07-02T09:06:47.597Z\"\n        },\n        {\n            \"_id\": \"6683c2eeb4894d65e436a505\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Day 2\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:50.104Z\",\n            \"updatedAt\": \"2024-07-02T09:06:29.700Z\"\n        },\n        {\n            \"_id\": \"6683c2edd073b5b8b729d8aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Introduction (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:49.483Z\",\n            \"updatedAt\": \"2024-07-02T09:05:49.483Z\"\n        },\n        {\n            \"_id\": \"6683c2037d44389ade8b7258\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Introduction\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:01:55.336Z\",\n            \"updatedAt\": \"2024-07-02T09:03:55.344Z\"\n        },\n        {\n            \"_id\": \"6682b404f70e06ca6531ddb1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-01T13:49:58.761Z\",\n            \"updatedAt\": \"2024-07-01T13:49:58.761Z\"\n        },\n        {\n            \"_id\": \"6682561cb29883614c2d3296\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%205-3.jpg?alt=media&token=3881e7dc-c227-411f-8f9d-f781e81b915c\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Verint Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-01T07:09:16.572Z\",\n            \"updatedAt\": \"2024-07-01T07:13:03.281Z\"\n        },\n        {\n            \"_id\": \"667eca03bd354805900d1662\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-8.jpg?alt=media&token=0b331368-3445-483d-90c8-9b18605c9097\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-28T14:34:43.265Z\",\n            \"updatedAt\": \"2024-06-28T14:39:18.117Z\"\n        },\n        {\n            \"_id\": \"667ea72ee7f6b4bdf7395eb0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-28T12:06:09.127Z\",\n            \"updatedAt\": \"2024-06-28T12:06:09.127Z\"\n        },\n        {\n            \"_id\": \"667d85128897900736fcd4fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-27T15:28:21.974Z\",\n            \"updatedAt\": \"2024-06-27T15:28:21.974Z\"\n        },\n        {\n            \"_id\": \"667d370b22f0c2780b412314\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F667d370b22f0c2780b412314%2F1719482337648%2F1719482339931%2FIT_recruitment_case_study_daisy_group_1719482339931.jpg?alt=media&token=6477a17b-8a3e-4adf-80f1-e0ab76ca4515\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Daisy & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-27T09:55:23.999Z\",\n            \"updatedAt\": \"2024-06-27T10:26:26.313Z\"\n        },\n        {\n            \"_id\": \"667d21644e5849f02e2c6ab3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-27T08:23:02.372Z\",\n            \"updatedAt\": \"2024-06-27T08:23:02.372Z\"\n        },\n        {\n            \"_id\": \"667d1bc84e5849f02e2c3b9a\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"65e18eaa2f9b4e7d0e0f995b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-27T07:59:04.988Z\",\n            \"updatedAt\": \"2024-06-27T07:59:21.948Z\"\n        },\n        {\n            \"_id\": \"667c48b5bde021c7b6fe52ae\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T16:58:31.825Z\",\n            \"updatedAt\": \"2024-06-26T16:58:31.825Z\"\n        },\n        {\n            \"_id\": \"667c38db8705f84c865eae61\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T15:50:53.699Z\",\n            \"updatedAt\": \"2024-06-26T15:50:53.699Z\"\n        },\n        {\n            \"_id\": \"6500313abdf65f0009176e6d\",\n            \"standalone\": true,\n            \"title\": \"Team Building Training \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"type\": \"path\",\n            \"description\": \"Give your team the tools to work better together and turn your office into a happy place.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-12T09:36:59.181Z\",\n            \"updatedAt\": \"2024-06-26T15:45:56.146Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"667c31f6d9d3de06d1ca479c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-7.jpg?alt=media&token=0de3e2a9-e2db-44fa-a43c-f5bee8c92fb5\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Foresters\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T15:21:26.508Z\",\n            \"updatedAt\": \"2024-06-26T15:22:36.851Z\"\n        },\n        {\n            \"_id\": \"667c1f223f612a4d5e5b3e54\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T14:01:08.331Z\",\n            \"updatedAt\": \"2024-06-26T14:01:08.331Z\"\n        },\n        {\n            \"_id\": \"667c0b9c6adcbaec3aa75295\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T12:37:51.426Z\",\n            \"updatedAt\": \"2024-06-26T12:37:51.426Z\"\n        },\n        {\n            \"_id\": \"667c07c06336a9be0f4ae6e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T12:21:22.738Z\",\n            \"updatedAt\": \"2024-06-26T12:21:22.738Z\"\n        },\n        {\n            \"_id\": \"667bd7207cd68069fd9718fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T08:53:52.824Z\",\n            \"updatedAt\": \"2024-06-26T08:57:03.402Z\"\n        },\n        {\n            \"_id\": \"667bd307319527fcfc886911\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T08:36:25.723Z\",\n            \"updatedAt\": \"2024-06-26T08:36:25.723Z\"\n        },\n        {\n            \"_id\": \"667bd2747cd68069fd96d57b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T08:33:58.779Z\",\n            \"updatedAt\": \"2024-06-26T08:33:58.779Z\"\n        },\n        {\n            \"_id\": \"667bbda1acc9387fd747df08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Valmont & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T07:05:05.891Z\",\n            \"updatedAt\": \"2024-06-26T07:05:28.646Z\"\n        },\n        {\n            \"_id\": \"667b0a2d9f2eb90fff54d6e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-3.jpg?alt=media&token=66cfdc30-841a-4633-a9ed-3434a55791e2\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-25T18:19:25.293Z\",\n            \"updatedAt\": \"2024-06-25T18:19:48.506Z\"\n        },\n        {\n            \"_id\": \"667aea029f2eb90fff54936c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-25T16:02:12.309Z\",\n            \"updatedAt\": \"2024-06-25T16:02:12.309Z\"\n        },\n        {\n            \"_id\": \"667ad00a5340d4a791876fbf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F666ad6014b057320e362ca5e%2F1718277718207%2F1718277721128%2Fukl_1718277721128.jpeg?alt=media&token=3fbbfeaf-6a0e-4a4a-b09f-752f20a9a6bb\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Uklon & Juno Journey   (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-25T14:11:22.672Z\",\n            \"updatedAt\": \"2024-06-25T14:11:26.924Z\"\n        },\n        {\n            \"_id\": \"667982ee600ba374824e1eb1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T14:30:06.417Z\",\n            \"updatedAt\": \"2024-06-24T14:30:51.921Z\"\n        },\n        {\n            \"_id\": \"667964e3c2bfec158a038721\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T12:21:57.794Z\",\n            \"updatedAt\": \"2024-06-24T12:21:57.794Z\"\n        },\n        {\n            \"_id\": \"6679624948cd85080782b252\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T12:10:55.265Z\",\n            \"updatedAt\": \"2024-06-24T12:10:55.265Z\"\n        },\n        {\n            \"_id\": \"6679589f377bb0cf506ebf9b\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T11:29:35.704Z\",\n            \"updatedAt\": \"2024-06-24T11:29:35.704Z\"\n        },\n        {\n            \"_id\": \"6679339713d7f621016fc8e7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64da167c0bc1ac0009960bed\",\n            \"title\": \"Juno's Quiz & Course Updates Review\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T08:51:35.773Z\",\n            \"updatedAt\": \"2024-06-24T08:57:17.734Z\"\n        },\n        {\n            \"_id\": \"667931e2b2086c27e88b8aa0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-9.jpg?alt=media&token=da1bdd39-2b6f-44dd-a304-7cd905fc7567\",\n            \"standalone\": true,\n            \"creator\": \"64da167c0bc1ac0009960bed\",\n            \"title\": \"CS Enablement - Quiz and Course Updates - June 2024\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T08:44:21.202Z\",\n            \"updatedAt\": \"2024-06-24T08:44:21.202Z\"\n        },\n        {\n            \"_id\": \"667564be5640417660dd6b79\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-21T11:32:17.687Z\",\n            \"updatedAt\": \"2024-06-21T11:32:17.687Z\"\n        },\n        {\n            \"_id\": \"66745a36a351a24f5d3a576d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T16:35:07.861Z\",\n            \"updatedAt\": \"2024-06-20T16:35:07.861Z\"\n        },\n        {\n            \"_id\": \"66745a31ffbccf70e3800fa0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T16:35:03.257Z\",\n            \"updatedAt\": \"2024-06-20T16:35:03.257Z\"\n        },\n        {\n            \"_id\": \"667458d6a351a24f5d3a52e0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T16:29:12.621Z\",\n            \"updatedAt\": \"2024-06-20T16:29:12.621Z\"\n        },\n        {\n            \"_id\": \"66744b2c9d1a81209b65397a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T15:30:55.772Z\",\n            \"updatedAt\": \"2024-06-20T15:30:55.772Z\"\n        },\n        {\n            \"_id\": \"66743fd6d9f7bc31fda6e9d4\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:42:30.979Z\",\n            \"updatedAt\": \"2024-06-20T14:42:30.979Z\"\n        },\n        {\n            \"_id\": \"66743f78a351a24f5d39e77b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:40:59.051Z\",\n            \"updatedAt\": \"2024-06-20T14:40:59.051Z\"\n        },\n        {\n            \"_id\": \"66743dc5ffbccf70e37f89c5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:33:44.534Z\",\n            \"updatedAt\": \"2024-06-20T14:33:44.534Z\"\n        },\n        {\n            \"_id\": \"66743c6e9d1a81209b64b460\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:28:01.597Z\",\n            \"updatedAt\": \"2024-06-20T14:28:01.597Z\"\n        },\n        {\n            \"_id\": \"667436ef09b2e1b3cc3e5f4f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F667436ef09b2e1b3cc3e5f4f%2F1718892437038%2F1718892438946%2Fpricefx_1718892438946.jpeg?alt=media&token=5bf9f8ae-3b44-4f3a-92d9-9aa342c2d416\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for PriceFX\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:04:31.221Z\",\n            \"updatedAt\": \"2024-06-20T14:25:39.649Z\"\n        },\n        {\n            \"_id\": \"6674145b30883e957615499a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T11:37:00.858Z\",\n            \"updatedAt\": \"2024-06-20T11:37:00.858Z\"\n        },\n        {\n            \"_id\": \"6673fd447ade7e92cc794e3b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-8.jpg?alt=media&token=0ff14ea5-4d68-4716-a177-96f42a0c2987\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T09:58:28.060Z\",\n            \"updatedAt\": \"2024-06-20T09:59:02.234Z\"\n        },\n        {\n            \"_id\": \"6673fc48aec8d2e05091be93\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T09:54:18.738Z\",\n            \"updatedAt\": \"2024-06-20T09:54:18.738Z\"\n        },\n        {\n            \"_id\": \"6672cca785cf6e12ee228f41\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:47.284Z\",\n            \"updatedAt\": \"2024-06-19T12:18:47.284Z\"\n        },\n        {\n            \"_id\": \"6672cca5535687f2169516ba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:45.240Z\",\n            \"updatedAt\": \"2024-06-19T12:18:45.240Z\"\n        },\n        {\n            \"_id\": \"6672cc9ff8cad23e26f5cdea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:39.504Z\",\n            \"updatedAt\": \"2024-06-19T12:18:39.504Z\"\n        },\n        {\n            \"_id\": \"6672cc99ce0d13a146e0cd16\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:33.952Z\",\n            \"updatedAt\": \"2024-06-19T12:18:33.952Z\"\n        },\n        {\n            \"_id\": \"66719c4075069dc73f056ce4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T14:40:00.800Z\",\n            \"updatedAt\": \"2024-06-18T14:40:00.800Z\"\n        },\n        {\n            \"_id\": \"66719b9ec5c3cadb6088eb62\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T14:37:19.058Z\",\n            \"updatedAt\": \"2024-06-18T14:37:19.058Z\"\n        },\n        {\n            \"_id\": \"66719ad59519dda98356e838\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T14:33:58.377Z\",\n            \"updatedAt\": \"2024-06-18T14:33:58.377Z\"\n        },\n        {\n            \"_id\": \"6671958c15b573ed0ea62f49\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T14:11:26.451Z\",\n            \"updatedAt\": \"2024-06-18T14:11:26.451Z\"\n        },\n        {\n            \"_id\": \"66715e9c19bf2b9e0def005e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-5.jpg?alt=media&token=5af11d40-7873-482b-96e7-57f66c62cca9\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Verastar\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T10:17:00.421Z\",\n            \"updatedAt\": \"2024-06-18T10:17:52.669Z\"\n        },\n        {\n            \"_id\": \"667153d302c761824c3df952\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T09:30:59.901Z\",\n            \"updatedAt\": \"2024-06-18T09:30:59.901Z\"\n        },\n        {\n            \"_id\": \"667153370700cece93300c2e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T09:28:23.806Z\",\n            \"updatedAt\": \"2024-06-18T09:28:23.806Z\"\n        },\n        {\n            \"_id\": \"667152e119bf2b9e0dee905d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T09:26:57.926Z\",\n            \"updatedAt\": \"2024-06-18T09:26:57.926Z\"\n        },\n        {\n            \"_id\": \"6670644d1dfbc5e55547567c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-6.jpg?alt=media&token=b4bf6c14-a705-4996-95a4-cd7c119d6ace\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T16:29:01.307Z\",\n            \"updatedAt\": \"2024-06-17T16:29:44.246Z\"\n        },\n        {\n            \"_id\": \"6670278db4b104683c3ad4fc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T12:09:50.200Z\",\n            \"updatedAt\": \"2024-06-17T12:09:50.200Z\"\n        },\n        {\n            \"_id\": \"66701fb0b4b104683c3aaef5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T11:36:17.398Z\",\n            \"updatedAt\": \"2024-06-17T11:36:17.398Z\"\n        },\n        {\n            \"_id\": \"666feaa4a3f0ce880f7480ef\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Dalet\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T07:49:56.522Z\",\n            \"updatedAt\": \"2024-06-17T07:54:19.214Z\"\n        },\n        {\n            \"_id\": \"666fea771dfbc5e555411a1f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T07:49:11.775Z\",\n            \"updatedAt\": \"2024-06-17T07:49:16.868Z\"\n        },\n        {\n            \"_id\": \"666c2ff8d0aebe25590591fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-14T11:56:41.139Z\",\n            \"updatedAt\": \"2024-06-14T11:56:41.139Z\"\n        },\n        {\n            \"_id\": \"666c2fd6c9e6b589307c03e5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-14T11:56:06.897Z\",\n            \"updatedAt\": \"2024-06-14T11:56:06.897Z\"\n        },\n        {\n            \"_id\": \"666c142c999f5cae4ad0bf70\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-14T09:58:04.559Z\",\n            \"updatedAt\": \"2024-06-14T09:58:04.559Z\"\n        },\n        {\n            \"_id\": \"666c100d999f5cae4ad08ecc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-14T09:40:30.292Z\",\n            \"updatedAt\": \"2024-06-14T09:40:30.292Z\"\n        },\n        {\n            \"_id\": \"666bfa9a3c5893f66511eed0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-5.jpg?alt=media&token=5af11d40-7873-482b-96e7-57f66c62cca9\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-14T08:08:58.630Z\",\n            \"updatedAt\": \"2024-06-14T08:09:13.303Z\"\n        },\n        {\n            \"_id\": \"666b3f7fd0aebe255902e442\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-3.jpg?alt=media&token=a46c2b0f-1c6b-43a1-afc4-bdb1affd6211\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Adaptavist Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T18:50:39.462Z\",\n            \"updatedAt\": \"2024-06-13T18:54:42.413Z\"\n        },\n        {\n            \"_id\": \"666b2f07b0d370bacd72a5ea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T17:40:24.079Z\",\n            \"updatedAt\": \"2024-06-13T17:40:24.079Z\"\n        },\n        {\n            \"_id\": \"666b231e3c5893f66510c300\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T16:49:34.980Z\",\n            \"updatedAt\": \"2024-06-13T16:49:34.980Z\"\n        },\n        {\n            \"_id\": \"666b2140287510e2ee5b3019\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T16:41:37.301Z\",\n            \"updatedAt\": \"2024-06-13T16:41:37.301Z\"\n        },\n        {\n            \"_id\": \"666b145d4b057320e365396c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T15:46:38.294Z\",\n            \"updatedAt\": \"2024-06-13T15:46:38.294Z\"\n        },\n        {\n            \"_id\": \"666b12cab0d370bacd7242e1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T15:39:55.286Z\",\n            \"updatedAt\": \"2024-06-13T15:39:55.286Z\"\n        },\n        {\n            \"_id\": \"666af17b8295781f0241abd2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T13:17:47.971Z\",\n            \"updatedAt\": \"2024-06-13T13:17:47.971Z\"\n        },\n        {\n            \"_id\": \"666addbb9d5ca331011271f8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T11:53:31.818Z\",\n            \"updatedAt\": \"2024-06-13T12:01:06.921Z\"\n        },\n        {\n            \"_id\": \"666addc54b057320e3632344\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T11:53:42.208Z\",\n            \"updatedAt\": \"2024-06-13T11:53:42.208Z\"\n        },\n        {\n            \"_id\": \"666abe99061b314c3d2ea779\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T09:40:42.063Z\",\n            \"updatedAt\": \"2024-06-13T09:40:42.063Z\"\n        },\n        {\n            \"_id\": \"666aacdcc0a7679638934f06\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T08:25:00.816Z\",\n            \"updatedAt\": \"2024-06-13T08:25:00.816Z\"\n        },\n        {\n            \"_id\": \"666817c5359a35d04707620e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-11T09:24:22.252Z\",\n            \"updatedAt\": \"2024-06-11T09:24:22.252Z\"\n        },\n        {\n            \"_id\": \"66676e866aaae3eea303df18\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T21:22:14.198Z\",\n            \"updatedAt\": \"2024-06-10T21:23:31.061Z\"\n        },\n        {\n            \"_id\": \"666763beb1a118952e340bdf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T20:36:15.328Z\",\n            \"updatedAt\": \"2024-06-10T20:36:15.328Z\"\n        },\n        {\n            \"_id\": \"66673811a4175c0657fa0a3b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T17:29:54.103Z\",\n            \"updatedAt\": \"2024-06-10T17:29:54.103Z\"\n        },\n        {\n            \"_id\": \"6666f4dad87edba5253c3e9b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T12:43:07.446Z\",\n            \"updatedAt\": \"2024-06-10T12:43:07.446Z\"\n        },\n        {\n            \"_id\": \"6666f4a27f7d3ebc73d3dd6d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T12:42:10.116Z\",\n            \"updatedAt\": \"2024-06-10T12:42:10.116Z\"\n        },\n        {\n            \"_id\": \"6666d4810b62e1c2ac41dc97\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T10:25:05.941Z\",\n            \"updatedAt\": \"2024-06-10T10:25:05.941Z\"\n        },\n        {\n            \"_id\": \"6666c77fdfae5594ef5dfd97\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T09:29:35.475Z\",\n            \"updatedAt\": \"2024-06-10T09:29:35.475Z\"\n        },\n        {\n            \"_id\": \"6661e4e5945ffdaa196e1a7e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T16:33:42.406Z\",\n            \"updatedAt\": \"2024-06-06T16:33:42.406Z\"\n        },\n        {\n            \"_id\": \"6661caf3a9b54d8c844cae92\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T14:43:00.225Z\",\n            \"updatedAt\": \"2024-06-06T14:43:00.225Z\"\n        },\n        {\n            \"_id\": \"6661ca0bff13029cd24388b1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T14:39:07.693Z\",\n            \"updatedAt\": \"2024-06-06T14:39:07.693Z\"\n        },\n        {\n            \"_id\": \"6661bedeff13029cd2430c03\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T13:51:27.185Z\",\n            \"updatedAt\": \"2024-06-06T13:51:27.185Z\"\n        },\n        {\n            \"_id\": \"6661b4c8a9b54d8c844bf4ec\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T13:08:24.640Z\",\n            \"updatedAt\": \"2024-06-06T13:08:24.640Z\"\n        },\n        {\n            \"_id\": \"6661b0b499257c13f3d5baf6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T12:51:01.231Z\",\n            \"updatedAt\": \"2024-06-06T12:51:01.231Z\"\n        },\n        {\n            \"_id\": \"6661b04199257c13f3d5b64d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T12:49:06.046Z\",\n            \"updatedAt\": \"2024-06-06T12:49:06.046Z\"\n        },\n        {\n            \"_id\": \"66609455c394acf1017c62be\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T16:37:42.418Z\",\n            \"updatedAt\": \"2024-06-05T16:37:42.418Z\"\n        },\n        {\n            \"_id\": \"6660933a443c008dc40ab88f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T16:32:59.214Z\",\n            \"updatedAt\": \"2024-06-05T16:32:59.214Z\"\n        },\n        {\n            \"_id\": \"6660841c84066eddc17ac2ee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T15:28:28.860Z\",\n            \"updatedAt\": \"2024-06-05T15:28:28.860Z\"\n        },\n        {\n            \"_id\": \"666079ba1613c5a5ecde29c8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T14:44:11.169Z\",\n            \"updatedAt\": \"2024-06-05T14:50:25.745Z\"\n        },\n        {\n            \"_id\": \"66605c4f611893f7702df797\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T12:38:39.081Z\",\n            \"updatedAt\": \"2024-06-05T12:38:39.081Z\"\n        },\n        {\n            \"_id\": \"66604a0f611893f7702d3a8c\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T11:20:47.023Z\",\n            \"updatedAt\": \"2024-06-05T11:20:47.023Z\"\n        },\n        {\n            \"_id\": \"665f59f7acda5f7d94881bc4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T18:16:24.604Z\",\n            \"updatedAt\": \"2024-06-04T18:16:24.604Z\"\n        },\n        {\n            \"_id\": \"665f3f5facda5f7d9487c7d4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T16:22:55.772Z\",\n            \"updatedAt\": \"2024-06-04T16:22:55.772Z\"\n        },\n        {\n            \"_id\": \"665f3469acda5f7d94879fad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T15:36:10.277Z\",\n            \"updatedAt\": \"2024-06-04T15:36:10.277Z\"\n        },\n        {\n            \"_id\": \"665f1c0d8d06debe8ed452fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T13:52:14.198Z\",\n            \"updatedAt\": \"2024-06-04T13:52:14.198Z\"\n        },\n        {\n            \"_id\": \"665f1b612db4c4126c50f095\",\n            \"photoUrl\": \"https://unsplash.com/photos/m_HRfLhgABo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb2RlfGVufDB8MHx8fDE2NzUzMzAwODI\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Welcome to the R&D Team\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T13:49:21.809Z\",\n            \"updatedAt\": \"2024-06-04T13:49:21.809Z\"\n        },\n        {\n            \"_id\": \"665f1b4b9e0db46f218ec493\",\n            \"photoUrl\": \"https://unsplash.com/photos/m_HRfLhgABo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb2RlfGVufDB8MHx8fDE2NzUzMzAwODI\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Welcome to the R&D Team\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T13:48:59.861Z\",\n            \"updatedAt\": \"2024-06-04T13:48:59.861Z\"\n        },\n        {\n            \"_id\": \"665f17fb2bf3110f2ac80bb8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-7.jpg?alt=media&token=bb32770c-9bab-418a-aa6e-c90079f67a48\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T13:34:51.688Z\",\n            \"updatedAt\": \"2024-06-04T13:40:17.237Z\"\n        },\n        {\n            \"_id\": \"665f0cbef69e435223f679e8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T12:46:54.909Z\",\n            \"updatedAt\": \"2024-06-04T12:46:54.909Z\"\n        },\n        {\n            \"_id\": \"665eff4e9e0db46f218d6dfd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-04T11:49:35.113Z\",\n            \"updatedAt\": \"2024-06-04T11:49:35.113Z\"\n        },\n        {\n            \"_id\": \"665dc6faefe9a8b9cfb78d73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T13:36:59.014Z\",\n            \"updatedAt\": \"2024-06-03T13:36:59.014Z\"\n        },\n        {\n            \"_id\": \"665da34d15eb6a1099f81c9f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SDR Onboarding for MyHeritage\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T11:04:46.817Z\",\n            \"updatedAt\": \"2024-06-03T12:18:11.275Z\"\n        },\n        {\n            \"_id\": \"6659b79e3cd5633d7fe53ff9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6659b79e3cd5633d7fe53ff9%2F1717156127301%2F1717156132109%2F365_1717156132109.jpg?alt=media&token=226b2d47-406a-481c-a52c-bffcbf1c5a1f\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Anywhere 365 & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-31T11:42:22.561Z\",\n            \"updatedAt\": \"2024-05-31T11:56:44.915Z\"\n        },\n        {\n            \"_id\": \"6659b31ad1917b0498d47b71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-31T11:23:06.601Z\",\n            \"updatedAt\": \"2024-05-31T11:23:06.601Z\"\n        },\n        {\n            \"_id\": \"66585744f36d39c0eb68651b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-30T10:39:00.722Z\",\n            \"updatedAt\": \"2024-05-30T10:39:00.722Z\"\n        },\n        {\n            \"_id\": \"66585580c99b392b8c9a9800\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-30T10:31:28.936Z\",\n            \"updatedAt\": \"2024-05-30T10:31:28.936Z\"\n        },\n        {\n            \"_id\": \"66584a0bad466619ba583d29\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-2.jpg?alt=media&token=09eed7ef-42e5-4f1f-8bad-060878e440ae\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Delivery Architect growth plan\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-30T09:42:35.328Z\",\n            \"updatedAt\": \"2024-05-30T09:43:23.780Z\"\n        },\n        {\n            \"_id\": \"6658482e28d3d0f0c8e728a2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-30T09:34:39.125Z\",\n            \"updatedAt\": \"2024-05-30T09:34:39.125Z\"\n        },\n        {\n            \"_id\": \"66572047c99b392b8c959806\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T12:32:07.698Z\",\n            \"updatedAt\": \"2024-05-29T12:32:07.698Z\"\n        },\n        {\n            \"_id\": \"6657169b4b84a890215cd9ee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T11:50:51.535Z\",\n            \"updatedAt\": \"2024-05-29T11:50:51.535Z\"\n        },\n        {\n            \"_id\": \"665712c130a05e8249b3c099\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T11:34:25.974Z\",\n            \"updatedAt\": \"2024-05-29T11:34:25.974Z\"\n        },\n        {\n            \"_id\": \"665619aab4bce39d65f2e06e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-28T17:51:38.610Z\",\n            \"updatedAt\": \"2024-05-28T17:51:38.610Z\"\n        },\n        {\n            \"_id\": \"6655e03a7b21fe3f13c39401\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-4.jpg?alt=media&token=66336249-4a18-4203-a2d0-5bb731b56eb0\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Deltek\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-28T13:46:34.913Z\",\n            \"updatedAt\": \"2024-05-28T13:46:45.434Z\"\n        },\n        {\n            \"_id\": \"6655b2dbead67ca74817ae98\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-28T10:32:59.940Z\",\n            \"updatedAt\": \"2024-05-28T10:32:59.940Z\"\n        },\n        {\n            \"_id\": \"665082e991b09487e47ba14c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"learn how to do something\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-24T12:07:05.751Z\",\n            \"updatedAt\": \"2024-05-24T12:16:23.324Z\"\n        },\n        {\n            \"_id\": \"6650782191b09487e47a0219\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-24T11:21:05.321Z\",\n            \"updatedAt\": \"2024-05-24T11:21:05.321Z\"\n        },\n        {\n            \"_id\": \"6645d3c7e09e4c75069d775d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-16T09:37:13.851Z\",\n            \"updatedAt\": \"2024-05-16T09:37:13.851Z\"\n        },\n        {\n            \"_id\": \"663ccf9484e0e667338a7598\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F663ccf9484e0e667338a7598%2F1715789979806%2F1715790001771%2Fend_1715790001772.jpg?alt=media&token=b6ffe9a0-a1fb-4fa0-a771-bd5210ebb656\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Endava & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T13:28:52.659Z\",\n            \"updatedAt\": \"2024-05-15T16:20:02.915Z\"\n        },\n        {\n            \"_id\": \"6644dce224bc8defa4a64a36\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-6.jpg?alt=media&token=836de927-f967-4d4c-9a53-d5f21b490b72\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Alcor Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T16:03:46.200Z\",\n            \"updatedAt\": \"2024-05-15T16:04:32.517Z\"\n        },\n        {\n            \"_id\": \"664498f8640456d37d701997\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T11:14:03.758Z\",\n            \"updatedAt\": \"2024-05-15T11:14:03.758Z\"\n        },\n        {\n            \"_id\": \"66447f18e41efd4ca48da463\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T09:23:37.060Z\",\n            \"updatedAt\": \"2024-05-15T09:23:37.060Z\"\n        },\n        {\n            \"_id\": \"66447b61ff7492c9ab7e2084\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T09:07:47.084Z\",\n            \"updatedAt\": \"2024-05-15T09:07:47.084Z\"\n        },\n        {\n            \"_id\": \"66447ae5af70a05893d1faf9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T09:05:42.272Z\",\n            \"updatedAt\": \"2024-05-15T09:05:42.272Z\"\n        },\n        {\n            \"_id\": \"664466a554c0977adea4492c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T07:39:18.290Z\",\n            \"updatedAt\": \"2024-05-15T07:39:18.290Z\"\n        },\n        {\n            \"_id\": \"6644628d2cc056977cbaf0f4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T07:21:49.788Z\",\n            \"updatedAt\": \"2024-05-15T07:21:49.788Z\"\n        },\n        {\n            \"_id\": \"6644590483f28fef4cb63240\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T06:41:08.792Z\",\n            \"updatedAt\": \"2024-05-15T06:41:08.792Z\"\n        },\n        {\n            \"_id\": \"664384ef4e06b7d44cc4e8a7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-14T15:36:15.942Z\",\n            \"updatedAt\": \"2024-05-14T15:36:15.942Z\"\n        },\n        {\n            \"_id\": \"6641c1e7984a525eb951f6bb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-13T07:31:54.742Z\",\n            \"updatedAt\": \"2024-05-13T07:31:54.742Z\"\n        },\n        {\n            \"_id\": \"66408b1a984a525eb94eb9d0\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-12T09:25:46.575Z\",\n            \"updatedAt\": \"2024-05-12T09:25:46.575Z\"\n        },\n        {\n            \"_id\": \"663f58a3a5551f1a9435b9b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-11T11:38:12.567Z\",\n            \"updatedAt\": \"2024-05-11T11:38:12.567Z\"\n        },\n        {\n            \"_id\": \"663f565689d2675d3840228c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-11T11:28:23.515Z\",\n            \"updatedAt\": \"2024-05-11T11:28:23.515Z\"\n        },\n        {\n            \"_id\": \"663e27402115bb2d32f2efb9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-10T13:55:13.338Z\",\n            \"updatedAt\": \"2024-05-10T13:55:13.338Z\"\n        },\n        {\n            \"_id\": \"663dec1e89d2675d383c10f1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-10T09:42:54.312Z\",\n            \"updatedAt\": \"2024-05-10T09:42:54.312Z\"\n        },\n        {\n            \"_id\": \"663ddd2489d2675d383b1e88\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-10T08:39:00.455Z\",\n            \"updatedAt\": \"2024-05-10T08:39:16.213Z\"\n        },\n        {\n            \"_id\": \"663cc7ad84e0e667338a209c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Native Instruments\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T12:55:09.857Z\",\n            \"updatedAt\": \"2024-05-09T13:00:31.172Z\"\n        },\n        {\n            \"_id\": \"663ca857d74aa6fb02bb5340\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Colep\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:41:27.742Z\",\n            \"updatedAt\": \"2024-05-09T10:45:48.331Z\"\n        },\n        {\n            \"_id\": \"663ca3e9631602f7e137e275\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:22:33.835Z\",\n            \"updatedAt\": \"2024-05-09T10:22:33.835Z\"\n        },\n        {\n            \"_id\": \"663ca392a910cba3dd7c285a\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:21:06.240Z\",\n            \"updatedAt\": \"2024-05-09T10:21:06.240Z\"\n        },\n        {\n            \"_id\": \"663ca354631602f7e137df2d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:20:04.890Z\",\n            \"updatedAt\": \"2024-05-09T10:20:04.890Z\"\n        },\n        {\n            \"_id\": \"663c729c3d551748306fa03d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T06:52:13.273Z\",\n            \"updatedAt\": \"2024-05-09T06:52:13.273Z\"\n        },\n        {\n            \"_id\": \"663c714ed74aa6fb02b8d90e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T06:46:39.097Z\",\n            \"updatedAt\": \"2024-05-09T06:46:39.097Z\"\n        },\n        {\n            \"_id\": \"663c67032eaa3ec5cde08104\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T06:02:43.542Z\",\n            \"updatedAt\": \"2024-05-09T06:02:43.542Z\"\n        },\n        {\n            \"_id\": \"663b888c5806f8373121ff96\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-2.jpg?alt=media&token=c53d339e-7923-4642-a909-dd44cd1a571e\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"asdfsadf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-08T14:13:32.143Z\",\n            \"updatedAt\": \"2024-05-08T14:20:56.436Z\"\n        },\n        {\n            \"_id\": \"663b7f6ace1ae565890f5688\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-08T13:34:34.480Z\",\n            \"updatedAt\": \"2024-05-08T13:34:34.480Z\"\n        },\n        {\n            \"_id\": \"663a47d21a27ae04096d5f7f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-8.jpg?alt=media&token=12bff025-300f-408f-8290-559e4bcfdaf0\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Atera Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-07T15:25:06.603Z\",\n            \"updatedAt\": \"2024-05-07T15:25:52.372Z\"\n        },\n        {\n            \"_id\": \"6638e890fbac2b767dcaffdd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-6.jpg?alt=media&token=b4bf6c14-a705-4996-95a4-cd7c119d6ace\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Dalet\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-06T14:26:24.607Z\",\n            \"updatedAt\": \"2024-05-06T14:29:36.564Z\"\n        },\n        {\n            \"_id\": \"6638b578fbac2b767dc81be6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Development plan for Komal\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-06T10:48:24.280Z\",\n            \"updatedAt\": \"2024-05-06T10:50:20.397Z\"\n        },\n        {\n            \"_id\": \"66389583bcb5538645ef9581\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-10.jpg?alt=media&token=4b8d36aa-5629-4df3-a5bb-55fd32c076bc\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"SodaStream\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-06T08:32:03.742Z\",\n            \"updatedAt\": \"2024-05-06T08:32:28.210Z\"\n        },\n        {\n            \"_id\": \"66349104fc3a92ada359750e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-03T07:23:49.431Z\",\n            \"updatedAt\": \"2024-05-03T07:23:49.431Z\"\n        },\n        {\n            \"_id\": \"6633c8aba69c5b600904b44f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-02T17:09:00.637Z\",\n            \"updatedAt\": \"2024-05-02T17:42:39.450Z\"\n        },\n        {\n            \"_id\": \"6633cbd5ec6fff76b200609e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011.jpg?alt=media&token=f61ab96f-d53a-4b53-a10c-98fd1bcafded\",\n            \"standalone\": true,\n            \"catalog\": 0,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"training session\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-02T17:22:29.136Z\",\n            \"updatedAt\": \"2024-05-02T17:22:29.621Z\"\n        },\n        {\n            \"_id\": \"6630f258efbc611689e6178f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test 1\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-30T13:30:00.827Z\",\n            \"updatedAt\": \"2024-04-30T13:36:06.529Z\"\n        },\n        {\n            \"_id\": \"6630abd5c084f34ba0642c23\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"659419cba05af00009a961e1\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-30T08:29:09.725Z\",\n            \"updatedAt\": \"2024-04-30T08:29:09.725Z\"\n        },\n        {\n            \"_id\": \"662b9dcc8dc101f348a8febd\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"example quiz\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:27:56.466Z\",\n            \"updatedAt\": \"2024-04-26T12:28:12.944Z\"\n        },\n        {\n            \"_id\": \"662b9972e49395df0f8eb1d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test 1\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:09:22.885Z\",\n            \"updatedAt\": \"2024-04-26T12:15:27.693Z\"\n        },\n        {\n            \"_id\": \"662a85897f88ea666a5cab62\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-7.jpg?alt=media&token=0de3e2a9-e2db-44fa-a43c-f5bee8c92fb5\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"R&D onboarding\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-25T16:32:09.159Z\",\n            \"updatedAt\": \"2024-04-25T16:32:19.377Z\"\n        },\n        {\n            \"_id\": \"662a83899f70dbab10f83b07\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-25T16:23:37.335Z\",\n            \"updatedAt\": \"2024-04-25T16:25:43.772Z\"\n        },\n        {\n            \"_id\": \"662a2354eac0a47684125cfb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-25T09:33:08.672Z\",\n            \"updatedAt\": \"2024-04-25T09:33:08.672Z\"\n        },\n        {\n            \"_id\": \"662a221ff04c58eb6e7d1b18\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-10.jpg?alt=media&token=4b8d36aa-5629-4df3-a5bb-55fd32c076bc\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Test 1\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-25T09:27:59.826Z\",\n            \"updatedAt\": \"2024-04-25T09:28:46.033Z\"\n        },\n        {\n            \"_id\": \"662a162690a4d7b6732a0f78\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Aevi\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-25T08:36:54.364Z\",\n            \"updatedAt\": \"2024-04-25T08:37:27.559Z\"\n        }\n    ]\n}"},{"id":"251ac5eb-9f98-4d1e-88bd-e4c7a19c36a2","name":"List Units - by creator ID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"creator\": \"64ae8d32cb525e00095e8b76\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/units/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1161c-QR2CAaJtQUjHGOAMLAreduhWSno\""},{"key":"vary","value":"Accept-Encoding"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 30 Apr 2025 09:55:55 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 148,\n    \"data\": [\n        {\n            \"_id\": \"6811e467e57ff59f88cd7cea\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-30T08:50:47.357Z\",\n            \"updatedAt\": \"2025-04-30T09:20:15.021Z\"\n        },\n        {\n            \"_id\": \"6811e467e57ff59f88cd7cf8\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-30T08:50:47.457Z\",\n            \"updatedAt\": \"2025-04-30T09:20:15.021Z\"\n        },\n        {\n            \"_id\": \"665da1eeefe9a8b9cfb56b29\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F665da1eeefe9a8b9cfb56b29%2F1744115335794%2F1744115339140%2Ftile_Juno_Icon_1744115339140.png?alt=media&token=d462e46c-6944-4d76-b0e7-88a1c068980f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T10:58:54.216Z\",\n            \"updatedAt\": \"2025-04-30T08:50:55.524Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8df51bd72d0008a2e9f7\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"catalog\": 2,\n            \"createdAt\": \"2023-07-12T11:26:45.112Z\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8df51bd72d0008a2e9f7%2F1744115221287%2F1744115225912%2Ftile_Juno_Icon_1744115225913.png?alt=media&token=ea42c51c-67c3-4b00-a9c6-902fe895572a\",\n            \"standalone\": true,\n            \"title\": \"New Hire First Week :)\",\n            \"type\": \"path\",\n            \"updatedAt\": \"2025-04-28T11:36:11.878Z\"\n        },\n        {\n            \"_id\": \"64ae9a7aa472ec00094e5db7\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"🎤 Monthly Guest Speakers\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae9a7aa472ec00094e5db7%2F1744115322374%2F1744115325729%2Ftile_Juno_Icon_1744115325730.png?alt=media&token=d1d386a7-60ce-4830-ad63-ae751b39e84f\",\n            \"type\": \"workshop\",\n            \"catalog\": 2,\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T12:20:10.890Z\",\n            \"updatedAt\": \"2025-04-22T16:38:49.672Z\",\n            \"description\": \"\"\n        },\n        {\n            \"_id\": \"67adbd188722d76772ad22fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67adbd188722d76772ad22fa%2F1744115299512%2F1744115303130%2Ftile_Juno_Icon_1744115303130.png?alt=media&token=60c6cf4d-7876-481d-885b-a07aab6df9d2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire Orientation\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:36:24.683Z\",\n            \"updatedAt\": \"2025-04-22T16:37:08.044Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8fd7961516000949b6e5\",\n            \"standalone\": true,\n            \"title\": \"Intro To Leadership 101\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8fd7961516000949b6e5%2F1708522991425%2F1708522997463%2Fleadership_1708522997463.gif?alt=media&token=aa921798-a5de-4a0d-8bbc-45909515bc4d\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:34:47.395Z\",\n            \"updatedAt\": \"2025-04-22T16:35:55.047Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67d81c06e200296dc3a53f2c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test for eran\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:56:38.484Z\",\n            \"updatedAt\": \"2025-04-22T16:24:03.276Z\"\n        },\n        {\n            \"_id\": \"6686837d6db74c654a05c11e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6686837d6db74c654a05c11e%2F1744115286570%2F1744115290556%2Ftile_Juno_Icon_1744115290556.png?alt=media&token=3bf46cef-00d4-49a2-9b6e-1a7801b40bf4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Advanced Discovery (MEDDPICC)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T11:11:57.635Z\",\n            \"updatedAt\": \"2025-04-17T06:05:10.705Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"66867d2528e60971acc2a40f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66867d2528e60971acc2a40f%2F1744115236595%2F1744115241112%2Ftile_Juno_Icon_1744115241112.png?alt=media&token=295e8ad3-5e6c-4b68-8b81-266e01058a1d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Mastering Sales Discovery\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T10:44:53.828Z\",\n            \"updatedAt\": \"2025-04-17T06:03:31.121Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67fd53dddcb2f5886154b266\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T18:28:45.826Z\",\n            \"updatedAt\": \"2025-04-14T18:30:38.476Z\"\n        },\n        {\n            \"_id\": \"67fcd7ab95db8e3b89516b0e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T09:38:51.037Z\",\n            \"updatedAt\": \"2025-04-14T09:40:34.001Z\"\n        },\n        {\n            \"_id\": \"67f6c9d795db8e3b89511c5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"John's into to hydraulics\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T19:26:15.346Z\",\n            \"updatedAt\": \"2025-04-09T19:26:15.789Z\"\n        },\n        {\n            \"_id\": \"64ae8f23c935220009c3f7b4\",\n            \"standalone\": true,\n            \"title\": \"Helping Clients Succeed: A CSM's Guide\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8f23c935220009c3f7b4%2F1708523115302%2F1708523124329%2Ffor_breakfast_1_1708523124329.gif?alt=media&token=8d0705bf-d372-4f24-bb06-4854209cf87a\",\n            \"type\": \"learning\",\n            \"description\": \"An organized approach for identifying clients' needs and helping them reach their goals.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:47.041Z\",\n            \"updatedAt\": \"2025-04-09T11:24:00.253Z\"\n        },\n        {\n            \"_id\": \"64d4e39a1eb9fb00080fd0fc\",\n            \"standalone\": true,\n            \"title\": \"30-60-90 Employee Onboarding Plan\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a459b316ec440008db6515%2F1673199628285%2F1673199628545%2F30-60-90.png?alt=media&token=8071aee4-0856-4c3a-86bb-a3a6bf15ca06\",\n            \"type\": \"learning\",\n            \"description\": \"Map out a clear course of action for a new employee during the first 30, 60, and 90 days of their new job.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T13:18:18.313Z\",\n            \"updatedAt\": \"2025-04-08T15:14:45.689Z\"\n        },\n        {\n            \"_id\": \"64ae9144c935220009c4027b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Joiners Breakfast\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-4.jpg?alt=media&token=7a6d3672-4d6c-4cc2-a1f7-4f94714fee5a\",\n            \"type\": \"workshop\",\n            \"catalog\": 2,\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:40:52.746Z\",\n            \"updatedAt\": \"2025-04-08T15:13:57.149Z\"\n        },\n        {\n            \"_id\": \"67f538a395db8e3b8950c05e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T14:54:27.915Z\",\n            \"updatedAt\": \"2025-04-08T15:00:12.188Z\"\n        },\n        {\n            \"_id\": \"66ebfcffc18397c71cb8ccd8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T10:29:19.496Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.448Z\"\n        },\n        {\n            \"_id\": \"67d1f8f31b688101276b8d1c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T21:13:23.294Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.907Z\"\n        },\n        {\n            \"_id\": \"66faf24867f3900a7b7ae82d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"signature\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T18:47:36.024Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.823Z\"\n        },\n        {\n            \"_id\": \"66df28548968a9f4e0c2dd46\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Signature example\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T16:54:44.942Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.812Z\"\n        },\n        {\n            \"_id\": \"66868ab46db74c654a064183\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66868ab46db74c654a064183%2F1720094365400%2F1720094369309%2FHI9M_1720094369309.gif?alt=media&token=c2bd9c66-e57c-4c43-92fb-5f4509cc605f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Partner Deal Registration\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T11:42:44.988Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.755Z\",\n            \"description\": \"\"\n        },\n        {\n            \"_id\": \"64d4cd57ab2ba50008fcbfa7\",\n            \"standalone\": true,\n            \"title\": \"5 Effective Sales Prospecting Email Templates\",\n            \"photoUrl\": \"https://unsplash.com/photos/3Mhgvrk4tjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbWFpbHxlbnwwfDB8fHwxNjc1ODc5OTMy\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:43:19.144Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.677Z\"\n        },\n        {\n            \"_id\": \"64d4cd40cca5da0009614dbd\",\n            \"standalone\": true,\n            \"title\": \" Sales Discovery Call Template\",\n            \"photoUrl\": \"https://unsplash.com/photos/6YKbEudk7rM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxkaXNjb3ZlcnxlbnwwfDB8fHwxNjQ3NzkxOTI2\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:56.427Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.674Z\"\n        },\n        {\n            \"_id\": \"64d4cd26e7517800092166ac\",\n            \"standalone\": true,\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:30.912Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.671Z\"\n        },\n        {\n            \"_id\": \"64d4cd123c86600008eae9a9\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:10.628Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.669Z\"\n        },\n        {\n            \"_id\": \"64ae8fee1add050009ff2e0d\",\n            \"standalone\": true,\n            \"title\": \"Share Version Updates with Customer-Facing Teams\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f37096d0c2e70007efa990%2F1676898884941%2F1676898891469%2FUpdate.png?alt=media&token=699951a0-da7f-4eb8-a433-f1a65bd61b6e\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:35:10.058Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.646Z\"\n        },\n        {\n            \"_id\": \"64ae8f861ebb7800083b4da6\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Update July 2023\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:33:26.341Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.644Z\"\n        },\n        {\n            \"_id\": \"64ae8f4f10d0ab0009c034b7\",\n            \"standalone\": true,\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"type\": \"learning\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:32:31.151Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.642Z\"\n        },\n        {\n            \"_id\": \"64ae8e6ac935220009c3f276\",\n            \"standalone\": true,\n            \"title\": \"Inclusion & Diversity In The Workplace\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6267a5b009d744b808c0dede%2F1651604560564%2FInclusion%20%26%20Diversity%20In%20The%20Workplace.png?alt=media&token=bceadcf3-da3b-4da0-8ce8-b6e064d51815\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:28:42.696Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.638Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8e5df87e180009051f37\",\n            \"standalone\": true,\n            \"title\": \"Security & Data Protection\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:28:29.662Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.636Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"668680931155286111f7816b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668680931155286111f7816b%2F1744115407963%2F1744115411185%2Ftile_Juno_Icon_1744115411186.png?alt=media&token=e1575bd3-f51b-4c92-a197-c936c7f6d550\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Development: SDR >> AE\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T10:59:31.057Z\",\n            \"updatedAt\": \"2025-04-08T12:30:12.045Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"65003159e06a7000098be54b\",\n            \"standalone\": true,\n            \"title\": \"Creative Problem Solving\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F65003159e06a7000098be54b%2F1744115251873%2F1744115255453%2Ftile_Juno_Icon_1744115255453.png?alt=media&token=62921872-b5b9-411a-aa06-fb084237e141\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-12T09:37:30.266Z\",\n            \"updatedAt\": \"2025-04-08T12:27:36.301Z\",\n            \"catalog\": 2,\n            \"description\": \"This is a course on creative problem solving \"\n        },\n        {\n            \"_id\": \"67ea9d6974b688bf5d946fe2\",\n            \"photoUrl\": \"https://unsplash.com/photos/s9CC2SKySJM/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8c2tpbGxzfGVufDB8MHx8fDE3MDcxMjQzNzZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Learning Requirements Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-31T13:49:29.748Z\",\n            \"updatedAt\": \"2025-03-31T13:49:29.748Z\"\n        },\n        {\n            \"_id\": \"67e5314f25e4bd22612ac96c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T11:06:55.424Z\",\n            \"updatedAt\": \"2025-03-27T11:07:06.472Z\"\n        },\n        {\n            \"_id\": \"67e3e93e2224a439ee5e9ada\",\n            \"photoUrl\": \"https://unsplash.com/photos/s9CC2SKySJM/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8c2tpbGxzfGVufDB8MHx8fDE3MDcxMjQzNzZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Learning Requirements Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T11:47:10.894Z\",\n            \"updatedAt\": \"2025-03-26T11:47:10.894Z\"\n        },\n        {\n            \"_id\": \"66e852a4497e430864e020a5\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-16T15:45:40.110Z\",\n            \"updatedAt\": \"2025-03-20T13:00:03.023Z\"\n        },\n        {\n            \"_id\": \"67dbef18f165cb9971d14c6c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Webinar series\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T10:34:00.605Z\",\n            \"updatedAt\": \"2025-03-20T10:34:01.006Z\"\n        },\n        {\n            \"_id\": \"67d9dd5f9f44ee7f94d365fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-18T20:53:51.775Z\",\n            \"updatedAt\": \"2025-03-18T20:53:52.264Z\"\n        },\n        {\n            \"_id\": \"6691020bef0be53ed8373a72\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Foundation Certification Program\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-12T10:14:35.707Z\",\n            \"updatedAt\": \"2025-02-26T20:22:27.294Z\"\n        },\n        {\n            \"_id\": \"65083095d00c7800090b9811\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SCORM example\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T11:12:21.030Z\",\n            \"updatedAt\": \"2025-02-19T16:55:17.064Z\"\n        },\n        {\n            \"_id\": \"67b388c0b185ad5dac973775\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-10.jpg?alt=media&token=4b8d36aa-5629-4df3-a5bb-55fd32c076bc\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"asdfadsfdas\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-17T19:06:40.365Z\",\n            \"updatedAt\": \"2025-02-17T19:06:40.815Z\"\n        },\n        {\n            \"_id\": \"67adb6b9c0c79f3a6281852e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"meeting test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:09:13.481Z\",\n            \"updatedAt\": \"2025-02-13T09:28:52.635Z\"\n        },\n        {\n            \"_id\": \"67adb9ed01ae5b4206fc4079\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test 2\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:22:53.699Z\",\n            \"updatedAt\": \"2025-02-13T09:24:51.102Z\"\n        },\n        {\n            \"_id\": \"6508301cc569e80009c4b627\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SCORM Example - Journey\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-4.jpg?alt=media&token=7a6d3672-4d6c-4cc2-a1f7-4f94714fee5a\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T11:10:20.769Z\",\n            \"updatedAt\": \"2025-01-13T12:44:45.944Z\"\n        },\n        {\n            \"_id\": \"64bfcdb27e2e7a00087981e3\",\n            \"standalone\": true,\n            \"title\": \"Employee Engagement Survey \",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"type\": \"survey\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-25T13:27:14.757Z\",\n            \"updatedAt\": \"2025-01-09T12:55:34.400Z\"\n        },\n        {\n            \"_id\": \"650961ea32aea40008fac850\",\n            \"standalone\": true,\n            \"title\": \"SDR Onboarding \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-19T08:55:07.450Z\",\n            \"updatedAt\": \"2025-01-07T15:56:06.281Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67472524b4ccd2a1fb314495\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-27T13:56:52.042Z\",\n            \"updatedAt\": \"2024-11-27T13:56:52.042Z\"\n        },\n        {\n            \"_id\": \"674603c95ef4029b9884ed9f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T17:22:17.911Z\",\n            \"updatedAt\": \"2024-11-26T17:34:27.589Z\"\n        },\n        {\n            \"_id\": \"6746038fbf0477e78207fb64\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-4.jpg?alt=media&token=9bff2a15-e56a-4d3b-a3e9-d39f151229dd\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"welcome\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T17:21:19.183Z\",\n            \"updatedAt\": \"2024-11-26T17:21:37.853Z\"\n        },\n        {\n            \"_id\": \"672cf660c33c703b61266f11\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-07T17:18:26.029Z\",\n            \"updatedAt\": \"2024-11-07T17:18:26.029Z\"\n        },\n        {\n            \"_id\": \"672b513794e21b34955c6d06\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"final step\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T11:21:27.644Z\",\n            \"updatedAt\": \"2024-11-06T11:21:35.178Z\"\n        },\n        {\n            \"_id\": \"672a0cc9500021e3613d06b5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F672a0cc9500021e3613d06b5%2F1730809280997%2F1730809286167%2F5ebc2a49a428098290267716_ezgif_com_optimize__18__1730809286167.gif?alt=media&token=72a8e6d1-e272-4769-ae59-c607e7809bc1\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Create Powerful Sales Messaging\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T12:17:13.235Z\",\n            \"updatedAt\": \"2024-11-05T12:21:34.338Z\"\n        },\n        {\n            \"_id\": \"672a0c3e90740b5b0be2b2f8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Salesforce CRM Full Training Tutorial For Beginners \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T12:14:54.054Z\",\n            \"updatedAt\": \"2024-11-05T12:16:21.931Z\"\n        },\n        {\n            \"_id\": \"6717c2827949552e82793724\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-3.jpg?alt=media&token=66cfdc30-841a-4633-a9ed-3434a55791e2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:19:30.481Z\",\n            \"updatedAt\": \"2024-10-22T15:21:47.594Z\"\n        },\n        {\n            \"_id\": \"6571c3b0b0a863000afe17ca\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-9.jpg?alt=media&token=6f8f0e43-7798-4bfe-98d1-fffba8380474\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:08:00.434Z\",\n            \"updatedAt\": \"2024-10-21T14:01:07.667Z\"\n        },\n        {\n            \"_id\": \"6571c3bf91e50c00080f8b5a\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:08:15.661Z\",\n            \"updatedAt\": \"2024-10-21T14:00:45.786Z\"\n        },\n        {\n            \"_id\": \"670e338b3438a8d401bbabff\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-2.jpg?alt=media&token=c53d339e-7923-4642-a909-dd44cd1a571e\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-15T09:19:07.799Z\",\n            \"updatedAt\": \"2024-10-15T09:19:18.977Z\"\n        },\n        {\n            \"_id\": \"6706b13585dd5cffadac64c2\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T16:37:09.846Z\",\n            \"updatedAt\": \"2024-10-09T16:37:09.846Z\"\n        },\n        {\n            \"_id\": \"6571c3c3b0a863000afe198a\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:08:19.098Z\",\n            \"updatedAt\": \"2024-10-08T15:25:46.049Z\"\n        },\n        {\n            \"_id\": \"6571c3abb7561d0009679cb2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"digital marketing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T13:07:55.639Z\",\n            \"updatedAt\": \"2024-10-08T15:24:55.341Z\"\n        },\n        {\n            \"_id\": \"6509da86a72c240008fa3a68\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Marketing updates\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-19T17:29:42.766Z\",\n            \"updatedAt\": \"2024-09-18T16:01:23.457Z\"\n        },\n        {\n            \"_id\": \"66d6f286d19e20aba786ae0d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-03T11:27:03.253Z\",\n            \"updatedAt\": \"2024-09-03T11:27:03.253Z\"\n        },\n        {\n            \"_id\": \"66c77b903a8c7fe0b22705b4\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Material from the Session\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-22T17:55:28.642Z\",\n            \"updatedAt\": \"2024-08-22T17:55:47.047Z\"\n        },\n        {\n            \"_id\": \"669924f55f03fbeb5c5f04f2\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T14:21:41.726Z\",\n            \"updatedAt\": \"2024-07-18T14:21:41.726Z\"\n        },\n        {\n            \"_id\": \"66952b6b54866d4429c98aac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"scorm example 2\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-15T14:00:11.729Z\",\n            \"updatedAt\": \"2024-07-15T14:01:14.800Z\"\n        },\n        {\n            \"_id\": \"6683c60edd8bbcd5a0a04b08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c60d5a701da7421345e5%2Fcrea%20una%20estrategia%20go-to-market%20en%203%20pasos.webp?alt=media&token=bfa7bcad-b8a8-4dbd-bec4-29ad8078d081\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"What is GTM Strategy?\",\n            \"description\": \"Proven 5 layer approach for developing your GTM strategy.\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:19:10.203Z\",\n            \"updatedAt\": \"2024-07-12T11:56:22.338Z\"\n        },\n        {\n            \"_id\": \"6683c6288c50dcfe94b8d0d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c6275a701da7421345e6%2Fcrea%20una%20estrategia%20go-to-market%20en%203%20pasos.webp?alt=media&token=ac31b3ad-b7e6-45ca-b82c-beec31966ff9\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"A Plan Is Not a Strategy \",\n            \"description\": \"A comprehensive plan—with goals, initiatives, and budgets–is comforting. But starting with a plan is a terrible way to make strategy. Roger Martin, former de...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:19:36.382Z\",\n            \"updatedAt\": \"2024-07-12T11:56:12.365Z\"\n        },\n        {\n            \"_id\": \"668fe7486cb43133c13256a0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product A Cert\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-11T14:08:08.941Z\",\n            \"updatedAt\": \"2024-07-11T14:10:08.589Z\"\n        },\n        {\n            \"_id\": \"6683cba3d96a7ec87855a640\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cba3d96a7ec87855a640%2FHI9M.gif?alt=media&token=0a33ae8b-aabc-41ae-b9c2-6ce00e95c4b2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Converting Visualforce page to Lightning Web Components - YouTube\",\n            \"description\": \"Converting Visualforce page to Lightning Web ComponentsA Lightning web component is a standardized way of creating encapsulated, reusable user interface elem...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:42:59.023Z\",\n            \"updatedAt\": \"2024-07-04T11:59:18.232Z\"\n        },\n        {\n            \"_id\": \"6683cb94323a87b07b5ce997\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cb94323a87b07b5ce997%2FHI9M.gif?alt=media&token=d918a349-80eb-4077-a7ed-adce331f3d06\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Create Lightning Aura component through developer console - Salesforce - YouTube\",\n            \"description\": \"In this video, I discuss how we can create a new lightning aura component through the developer console.This video is to answer one of the community user's q...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:42:44.466Z\",\n            \"updatedAt\": \"2024-07-04T11:58:31.664Z\"\n        },\n        {\n            \"_id\": \"6683cb7ac594e6875ea09bb7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cb7ac594e6875ea09bb7%2FHI9M.gif?alt=media&token=ee9707d7-03dd-4d88-b173-5a55034d79cd\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Salesforce CRM Full Training Tutorial For Beginners | 2022 - YouTube\",\n            \"description\": \"Need Help With Salesforce? Check Out – https://www.crmcrew.comIn this video I explain how to use the key features inside Salesforce CRM. 00:00 - Intro00:49 -...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:42:18.671Z\",\n            \"updatedAt\": \"2024-07-04T11:58:18.727Z\"\n        },\n        {\n            \"_id\": \"6683cbcff5ed976346cc94e4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cbcff5ed976346cc94e4%2F5ebc2a49a428098290267716_ezgif.com-optimize%20(18).gif?alt=media&token=a9ba74bc-614f-4c1d-b350-3d1b747f6959\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Create Powerful Sales Messaging - YouTube\",\n            \"description\": \"Here is a link to the complete SMART Sales System training program - https://youtube.com/playlist?list=PLoUVJsDQgZIIDinZ2l865qEhABzjBrndfTry Sales Simulator ...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:43:43.436Z\",\n            \"updatedAt\": \"2024-07-04T11:57:36.138Z\"\n        },\n        {\n            \"_id\": \"6683cbc2323a87b07b5ceb2e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cbc2323a87b07b5ceb2e%2F5ebc2a49a428098290267716_ezgif.com-optimize%20(18).gif?alt=media&token=ada78d1a-1183-4974-a904-23e0d559db67\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"The Best Way to Write a Sales Message - YouTube\",\n            \"description\": \"Mario Martinez Jr., CEO and Founder of Vengreso, describes the PVC Sales Methodology for sales prospecting. PVC stands for Personalization, Value, Call to Ac...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:43:30.125Z\",\n            \"updatedAt\": \"2024-07-04T11:57:21.914Z\"\n        },\n        {\n            \"_id\": \"6683cbb5123a0e16deeabb01\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683cbb5123a0e16deeabb01%2F5ebc2a49a428098290267716_ezgif.com-optimize%20(18).gif?alt=media&token=c4295082-9d2f-4534-9c5a-3c8c52c8af6f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Develop A Successful Sales Messaging Strategy Using Unconsidered Needs - YouTube\",\n            \"description\": \"Develop a successful marketing and sales message for your prospects that sets you apart from the competition and disrupts your buyer’s status quo. In this vi...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:43:17.700Z\",\n            \"updatedAt\": \"2024-07-04T11:56:54.460Z\"\n        },\n        {\n            \"_id\": \"651d3d703cd0590009a56c6d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anonymous Survey example\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-10-04T10:24:48.375Z\",\n            \"updatedAt\": \"2024-07-03T14:17:23.348Z\"\n        },\n        {\n            \"_id\": \"659d6b12b6aad6074eb88ed6\",\n            \"photoUrl\": \"https://unsplash.com/photos/12eHC6FxPyg/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHw4fHxmb29kfGVufDB8MHx8fDE3MDQ4MTU2NTZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"do you want food?\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-09T15:49:38.884Z\",\n            \"updatedAt\": \"2024-07-03T14:16:33.998Z\"\n        },\n        {\n            \"_id\": \"667960ff30b7081b8c819d05\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-3.jpg?alt=media&token=a46c2b0f-1c6b-43a1-afc4-bdb1affd6211\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"sdfsdf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T12:05:19.372Z\",\n            \"updatedAt\": \"2024-07-02T12:00:46.616Z\"\n        },\n        {\n            \"_id\": \"6683c762456f669be1e95d47\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c748c845f5816a4705b4%2Fgiphy.gif?alt=media&token=7b229ce0-4733-469b-9afd-05dfdc861229\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anatomy of the Win: Company C\",\n            \"description\": \"Take a look how Juno Journey helps SMB's to provide personalized learning experience to their teams and a personal growth plan to each individual.\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:24:50.768Z\",\n            \"updatedAt\": \"2024-07-02T09:46:23.239Z\"\n        },\n        {\n            \"_id\": \"6683c6e7123a0e16deea77f8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c6e55a701da7421345e9%2Fgiphy.gif?alt=media&token=ef9bcb09-236d-42c0-b875-2637f6818ae9\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anatomy of the Win: Company B\",\n            \"description\": \"Meagan Davis, the Director of Sales Enablement at Hunters, shares Hunters' success story with Juno Journey. Hunters discovered the key to unlocking their tea...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:22:47.317Z\",\n            \"updatedAt\": \"2024-07-02T09:46:11.767Z\"\n        },\n        {\n            \"_id\": \"6683c6cfdd8bbcd5a0a0558a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c6bf5a701da7421345e8%2Fgiphy.gif?alt=media&token=d794d640-68e8-4e4a-87b1-8baea4bd94f5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Anatomy of the Win: Company A\",\n            \"description\": \"\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:22:23.474Z\",\n            \"updatedAt\": \"2024-07-02T09:46:00.534Z\"\n        },\n        {\n            \"_id\": \"6683c5d3c594e6875ea03d0a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c5d25a701da7421345e4%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=f9b588d9-1bc7-4c91-908b-bf625e4e203d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Interview “Almost” Anyone | Mike Dronkers | TEDxHumboldtBay - YouTube\",\n            \"description\": \"How to Interview “Almost” AnyoneMike Dronkers is the program director, music director, and mid-day host at KHUM-FM. Dronkers’ popular radio program has a dev...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:18:11.355Z\",\n            \"updatedAt\": \"2024-07-02T09:18:11.355Z\"\n        },\n        {\n            \"_id\": \"6683c5ab687ecfbf73c12c2d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c5a65a701da7421345e3%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=ce617c37-4d42-49a7-b75c-3c827f82ec66\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"TOP 21 QUICK ANSWERS TO JOB INTERVIEW QUESTIONS! - YouTube\",\n            \"description\": \"TOP 21 QUICK ANSWERS TO JOB INTERVIEW QUESTIONS by Richard McMunn of: : https://passmyinterview.com/21-short-answers-to-interview-questions/#interviews #inte...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:17:31.181Z\",\n            \"updatedAt\": \"2024-07-02T09:17:31.181Z\"\n        },\n        {\n            \"_id\": \"6683c563123a0e16deea5e85\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F602e35ac18e5d30034747f76%2F1657452150475%2F1657452155328%2FScreen%20Shot%202022-04-20%20at%2016.59%201%20(7).png?alt=media&token=238b9589-0e53-451a-956a-931c248cd16d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A Great Interviewer \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:16:25.898Z\",\n            \"updatedAt\": \"2024-07-02T09:16:25.898Z\"\n        },\n        {\n            \"_id\": \"6683c51c8c50dcfe94b8b27a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c51c8c50dcfe94b8b27a%2Fphoto-1553484771-371a605b060b.jpeg?alt=media&token=05c983c8-9c95-4382-aaba-3fcb116cce9a\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"\\\"How to structure an effective sales story\\\" - Mike Adams  (Talking Sales 253 ) - YouTube\",\n            \"description\": \"Stories sell, yet only if they are structured properly.In this 5 minute discussion I asked expert sales storyteller, Mike Adams, how to structure our stories...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:15:08.856Z\",\n            \"updatedAt\": \"2024-07-02T09:15:59.852Z\"\n        },\n        {\n            \"_id\": \"6683c503323a87b07b5c955d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6683c503323a87b07b5c955d%2Fphoto-1553484771-371a605b060b.jpeg?alt=media&token=6c1fdaa7-d6f3-49a0-a4b2-24166b6cd950\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Business Storytelling Made Easy | Kelly Parker | TEDxBalchStreet - YouTube\",\n            \"description\": \"In this talk, you will learn why stories are an invaluable tool to shape consumers’ mindset, beliefs and behavior. Then, you will learn a simple, 4-step proc...\",\n            \"type\": \"video\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:14:43.052Z\",\n            \"updatedAt\": \"2024-07-02T09:15:40.854Z\"\n        },\n        {\n            \"_id\": \"6683c3ee5a701da7421345e2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8fd7961516000949b6e5%2F1708522991425%2F1708522997463%2Fleadership_1708522997463.gif?alt=media&token=aa921798-a5de-4a0d-8bbc-45909515bc4d\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Intro To Leadership 201\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:10:24.141Z\",\n            \"updatedAt\": \"2024-07-02T09:13:24.416Z\"\n        },\n        {\n            \"_id\": \"6683c39d5a701da7421345e1\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A More Effective Communicator (Advanced)\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:09:18.029Z\",\n            \"updatedAt\": \"2024-07-02T09:09:26.663Z\"\n        },\n        {\n            \"_id\": \"6683c35c7d44389ade8b8f78\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Become A More Effective Communicator\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:07:55.585Z\",\n            \"updatedAt\": \"2024-07-02T09:07:55.585Z\"\n        },\n        {\n            \"_id\": \"6683c2f6d96a7ec87854cdcf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Day 1\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:58.179Z\",\n            \"updatedAt\": \"2024-07-02T09:06:47.597Z\"\n        },\n        {\n            \"_id\": \"6683c2eeb4894d65e436a505\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Day 2\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:50.104Z\",\n            \"updatedAt\": \"2024-07-02T09:06:29.700Z\"\n        },\n        {\n            \"_id\": \"6683c2edd073b5b8b729d8aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Introduction (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:49.483Z\",\n            \"updatedAt\": \"2024-07-02T09:05:49.483Z\"\n        },\n        {\n            \"_id\": \"6683c2037d44389ade8b7258\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Introduction\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:01:55.336Z\",\n            \"updatedAt\": \"2024-07-02T09:03:55.344Z\"\n        },\n        {\n            \"_id\": \"667eca03bd354805900d1662\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-8.jpg?alt=media&token=0b331368-3445-483d-90c8-9b18605c9097\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-28T14:34:43.265Z\",\n            \"updatedAt\": \"2024-06-28T14:39:18.117Z\"\n        },\n        {\n            \"_id\": \"6500313abdf65f0009176e6d\",\n            \"standalone\": true,\n            \"title\": \"Team Building Training \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-9.jpg?alt=media&token=a1769187-b289-4b3a-811d-295aa4416de2\",\n            \"type\": \"path\",\n            \"description\": \"Give your team the tools to work better together and turn your office into a happy place.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-12T09:36:59.181Z\",\n            \"updatedAt\": \"2024-06-26T15:45:56.146Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"665da34d15eb6a1099f81c9f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SDR Onboarding for MyHeritage\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T11:04:46.817Z\",\n            \"updatedAt\": \"2024-06-03T12:18:11.275Z\"\n        },\n        {\n            \"_id\": \"665082e991b09487e47ba14c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"learn how to do something\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-24T12:07:05.751Z\",\n            \"updatedAt\": \"2024-05-24T12:16:23.324Z\"\n        },\n        {\n            \"_id\": \"663b888c5806f8373121ff96\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-2.jpg?alt=media&token=c53d339e-7923-4642-a909-dd44cd1a571e\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"asdfsadf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-08T14:13:32.143Z\",\n            \"updatedAt\": \"2024-05-08T14:20:56.436Z\"\n        },\n        {\n            \"_id\": \"663b7f6ace1ae565890f5688\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-08T13:34:34.480Z\",\n            \"updatedAt\": \"2024-05-08T13:34:34.480Z\"\n        },\n        {\n            \"_id\": \"6633c8aba69c5b600904b44f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-02T17:09:00.637Z\",\n            \"updatedAt\": \"2024-05-02T17:42:39.450Z\"\n        },\n        {\n            \"_id\": \"6633cbd5ec6fff76b200609e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011.jpg?alt=media&token=f61ab96f-d53a-4b53-a10c-98fd1bcafded\",\n            \"standalone\": true,\n            \"catalog\": 0,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"training session\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-02T17:22:29.136Z\",\n            \"updatedAt\": \"2024-05-02T17:22:29.621Z\"\n        },\n        {\n            \"_id\": \"662b9dcc8dc101f348a8febd\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"example quiz\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:27:56.466Z\",\n            \"updatedAt\": \"2024-04-26T12:28:12.944Z\"\n        },\n        {\n            \"_id\": \"662b9972e49395df0f8eb1d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test 1\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:09:22.885Z\",\n            \"updatedAt\": \"2024-04-26T12:15:27.693Z\"\n        },\n        {\n            \"_id\": \"66166f2e64efb7e3d5928ad2\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-10T10:51:26.363Z\",\n            \"updatedAt\": \"2024-04-10T10:51:26.363Z\"\n        },\n        {\n            \"_id\": \"65dc558dbe4ec061ca13f327\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-26T09:10:37.760Z\",\n            \"updatedAt\": \"2024-04-09T14:37:56.201Z\"\n        },\n        {\n            \"_id\": \"65fc3544c323041bcd47419d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-3.jpg?alt=media&token=a46c2b0f-1c6b-43a1-afc4-bdb1affd6211\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Blog Post\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-21T13:25:24.601Z\",\n            \"updatedAt\": \"2024-03-21T13:40:26.037Z\"\n        },\n        {\n            \"_id\": \"65fc357d02b41084aba482fc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-8.jpg?alt=media&token=ecfb6121-c7c7-4e7c-86cb-402c5fa14515\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Blog Post\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-21T13:26:21.322Z\",\n            \"updatedAt\": \"2024-03-21T13:40:26.037Z\"\n        },\n        {\n            \"_id\": \"65fc3499083dc4016f603aee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-9.jpg?alt=media&token=da1bdd39-2b6f-44dd-a304-7cd905fc7567\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"afasdf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-21T13:22:33.895Z\",\n            \"updatedAt\": \"2024-03-21T13:22:53.197Z\"\n        },\n        {\n            \"_id\": \"65dcaabe1b516c52c72a01f1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-26T15:14:06.318Z\",\n            \"updatedAt\": \"2024-02-26T15:21:27.845Z\"\n        },\n        {\n            \"_id\": \"65cbb45f5ab810c0db13b8b2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"new journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-13T18:26:39.269Z\",\n            \"updatedAt\": \"2024-02-13T18:28:37.005Z\"\n        },\n        {\n            \"_id\": \"65c61927592406fb0ce14b3e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012.jpg?alt=media&token=fd995a16-4b8d-4ad7-a3e8-d7a439f28021\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"asfsdafdasf\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-09T12:23:03.826Z\",\n            \"updatedAt\": \"2024-02-09T12:23:25.314Z\"\n        },\n        {\n            \"_id\": \"65b93191955a1138258991f7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-30T17:27:45.020Z\",\n            \"updatedAt\": \"2024-01-30T17:27:45.020Z\"\n        },\n        {\n            \"_id\": \"659d506c19b4c248c56c0669\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Sans titre\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-09T13:55:56.663Z\",\n            \"updatedAt\": \"2024-01-09T14:20:43.485Z\"\n        },\n        {\n            \"_id\": \"6571c098b0a863000afe02b2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"new HRBP training\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-4.jpg?alt=media&token=66336249-4a18-4203-a2d0-5bb731b56eb0\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T12:54:49.000Z\",\n            \"updatedAt\": \"2023-12-07T13:03:48.172Z\"\n        },\n        {\n            \"_id\": \"65706f260162130008a472ce\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Barak Test\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%205-3.jpg?alt=media&token=3881e7dc-c227-411f-8f9d-f781e81b915c\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-06T12:55:02.956Z\",\n            \"updatedAt\": \"2023-12-06T12:57:03.029Z\"\n        },\n        {\n            \"_id\": \"6564a034318e300009d7972b\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"excel training\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-6.jpg?alt=media&token=b4bf6c14-a705-4996-95a4-cd7c119d6ace\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-27T13:57:08.538Z\",\n            \"updatedAt\": \"2023-11-27T13:57:23.241Z\"\n        },\n        {\n            \"_id\": \"655ca4bf975ae300080cba81\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"first day setup\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-4.jpg?alt=media&token=66336249-4a18-4203-a2d0-5bb731b56eb0\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-21T12:38:23.643Z\",\n            \"updatedAt\": \"2023-11-21T12:39:09.104Z\"\n        },\n        {\n            \"_id\": \"654badf5da074e000922b522\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"new hire mandatory compliance for nursing\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-08T15:49:09.427Z\",\n            \"updatedAt\": \"2023-11-08T15:55:44.245Z\"\n        },\n        {\n            \"_id\": \"6543bf23ea988700089b1fef\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"new learning path\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-02T15:24:19.305Z\",\n            \"updatedAt\": \"2023-11-02T15:24:34.306Z\"\n        },\n        {\n            \"_id\": \"654387aa0ff10800094e3d18\",\n            \"standalone\": true,\n            \"title\": \"Workplace Harassment\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-11-02T11:27:38.935Z\",\n            \"updatedAt\": \"2023-11-02T11:27:38.935Z\"\n        },\n        {\n            \"_id\": \"65315e10b09a3500099d3c81\",\n            \"standalone\": true,\n            \"title\": \"Employee Handbook\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"type\": \"path\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-10-19T16:49:21.854Z\",\n            \"updatedAt\": \"2023-10-19T16:49:21.854Z\"\n        },\n        {\n            \"_id\": \"6530ea2385db3d0009580fde\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SCORM vs\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"type\": \"scorm\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-10-19T08:34:43.346Z\",\n            \"updatedAt\": \"2023-10-19T08:36:40.132Z\"\n        },\n        {\n            \"_id\": \"65300c325d1ea20009160a46\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"management training\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-10.jpg?alt=media&token=e7641a47-e567-428a-9943-3158788bf034\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-10-18T16:47:47.004Z\",\n            \"updatedAt\": \"2023-10-18T16:49:15.154Z\"\n        },\n        {\n            \"_id\": \"652d6832dad9cf000965ed34\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"new onboarding \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-5.jpg?alt=media&token=5505df83-8595-4c6f-9a63-c89b8287ef71\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-10-16T16:43:30.476Z\",\n            \"updatedAt\": \"2023-10-16T16:47:22.725Z\"\n        },\n        {\n            \"_id\": \"6523fcd359e0470008b01be8\",\n            \"standalone\": true,\n            \"title\": \"Sales/Customer Success Handover\",\n            \"photoUrl\": \"https://unsplash.com/photos/vbxyFxlgpjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxtZWV0aW5nfGVufDB8MHx8fDE2NzYyODY3MDc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-10-09T13:14:59.139Z\",\n            \"updatedAt\": \"2023-10-09T13:14:59.139Z\"\n        },\n        {\n            \"_id\": \"6523fb2fe5a80e00097484dd\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"new onboarding experience\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-9.jpg?alt=media&token=6f8f0e43-7798-4bfe-98d1-fffba8380474\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-10-09T13:07:59.233Z\",\n            \"updatedAt\": \"2023-10-09T13:08:47.855Z\"\n        },\n        {\n            \"_id\": \"651c1b203b52e900091e7594\",\n            \"standalone\": true,\n            \"title\": \"30-60-90 Employee Onboarding Plan\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a459b316ec440008db6515%2F1673199628285%2F1673199628545%2F30-60-90.png?alt=media&token=8071aee4-0856-4c3a-86bb-a3a6bf15ca06\",\n            \"type\": \"learning\",\n            \"description\": \"Map out a clear course of action for a new employee during the first 30, 60, and 90 days of their new job.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-10-03T13:46:08.164Z\",\n            \"updatedAt\": \"2023-10-03T13:46:08.164Z\"\n        },\n        {\n            \"_id\": \"651468439e9d1e000881194e\",\n            \"standalone\": true,\n            \"title\": \"New Hire First Week 2.0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-27T17:37:08.915Z\",\n            \"updatedAt\": \"2023-10-02T10:20:21.435Z\"\n        },\n        {\n            \"_id\": \"6516b637554be1000995e1ce\",\n            \"standalone\": true,\n            \"title\": \"Pre-Onboarding Template\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-29T11:34:15.996Z\",\n            \"updatedAt\": \"2023-09-29T11:34:15.996Z\"\n        },\n        {\n            \"_id\": \"65141685b5ee6900090470d8\",\n            \"standalone\": true,\n            \"title\": \"Fire & Safety Guidelines  \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626501ae265147e29a3d0716%2F1651604435494%2FSchool-fire-safety.jpeg?alt=media&token=1075e279-bf23-4bf9-b4fb-83cf903cde5a\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-27T11:48:21.732Z\",\n            \"updatedAt\": \"2023-09-27T11:48:21.732Z\"\n        },\n        {\n            \"_id\": \"64ae8ee8d6ad29000901e01b\",\n            \"standalone\": true,\n            \"title\": \"Welcome to the Customer Success Team \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e39fb32b22ef0008940512%2F1675868390669%2F1675868411108%2FTwo%20people%20high%20fiving.png?alt=media&token=01779882-6871-4c9b-9f67-480ca668d4fc\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:30:48.290Z\",\n            \"updatedAt\": \"2023-09-20T15:13:44.055Z\"\n        },\n        {\n            \"_id\": \"650883a77fb27e00080e0753\",\n            \"standalone\": true,\n            \"title\": \"Employee Development Survey\",\n            \"photoUrl\": \"https://unsplash.com/photos/OSvN1fBcXYE/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxidWlsZGluZyUyMGJsb2Nrc3xlbnwwfDB8fHwxNjcxNjk2OTIx\",\n            \"type\": \"survey\",\n            \"description\": \"Collect feedback on your employee development efforts. \",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-18T17:06:47.922Z\",\n            \"updatedAt\": \"2023-09-18T17:06:47.922Z\"\n        },\n        {\n            \"_id\": \"650862c4465eea0009aa1d07\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"NYC Office Guidelines\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T14:46:28.902Z\",\n            \"updatedAt\": \"2023-09-18T14:58:24.477Z\"\n        },\n        {\n            \"_id\": \"650862281f760d000975a0ba\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Miami Office Procedures\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T14:43:52.921Z\",\n            \"updatedAt\": \"2023-09-18T14:44:07.186Z\"\n        },\n        {\n            \"_id\": \"650861382a9cd800090232f5\",\n            \"standalone\": true,\n            \"title\": \"Employee Handbook\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"type\": \"path\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-18T14:39:53.549Z\",\n            \"updatedAt\": \"2023-09-18T14:41:30.332Z\"\n        },\n        {\n            \"_id\": \"65082af67da55300096c1c62\",\n            \"standalone\": true,\n            \"type\": \"image\",\n            \"title\": \"Optival: Measuring L&D impact\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F65082af450a1e70c01e81870%2Fdownload%20(2).jpeg?alt=media&token=6c6e0325-c93a-4e30-826e-38922463877b\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:48:22.717Z\",\n            \"updatedAt\": \"2023-09-18T10:48:22.717Z\"\n        },\n        {\n            \"_id\": \"65082a97c569e80009c49278\",\n            \"standalone\": true,\n            \"title\": \"Flipp: Increasing employee satisfaction\",\n            \"description\": \"See how Flipp is providing their employees personal development opportunities using Juno Journey.\",\n            \"photoUrl\": \"https://i.ytimg.com/vi/7Ps3qmilesA/maxresdefault.jpg\",\n            \"type\": \"video\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:46:47.847Z\",\n            \"updatedAt\": \"2023-09-18T10:46:47.847Z\"\n        },\n        {\n            \"_id\": \"65082a676820a40009642a9d\",\n            \"standalone\": true,\n            \"type\": \"image\",\n            \"title\": \"Trax: Increasing employee engagement\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F65082a6506b97fc76e9a6bbb%2Fdownload%20(1).jpeg?alt=media&token=6c58a7f1-bb54-4f96-8323-cce8c0dbd4df\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:45:59.710Z\",\n            \"updatedAt\": \"2023-09-18T10:45:59.710Z\"\n        },\n        {\n            \"_id\": \"65082a0faaef890008fe1f59\",\n            \"standalone\": true,\n            \"type\": \"document\",\n            \"title\": \"Rapyd: Creating internal alignment\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F65082a0faaef890008fe1f59%2FidxKqLpmSt.jpeg?alt=media&token=17c5638a-4f48-43fe-b153-fb806063bf43\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:44:31.136Z\",\n            \"updatedAt\": \"2023-09-18T10:44:57.521Z\"\n        },\n        {\n            \"_id\": \"650827e9c569e80009c480fb\",\n            \"standalone\": true,\n            \"type\": \"document\",\n            \"title\": \"Kaltura: Decreasing time to onboard\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F650827e7cd9604b1391ca2fa%2Fkaltura%20logo.png?alt=media&token=91a63ea2-4b1b-4bbb-be72-173989216e09\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:35:21.364Z\",\n            \"updatedAt\": \"2023-09-18T10:43:22.799Z\"\n        },\n        {\n            \"_id\": \"650828d0d00c7800090b68a1\",\n            \"standalone\": true,\n            \"type\": \"document\",\n            \"title\": \"Prodware: Personalized upskilling at scale\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F650828d0d00c7800090b68a1%2Fdownload.jpeg?alt=media&token=34f32aeb-9f11-4f6a-84ac-0f3a091d9cac\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:39:12.360Z\",\n            \"updatedAt\": \"2023-09-18T10:43:07.534Z\"\n        },\n        {\n            \"_id\": \"6508293c7da55300096c125a\",\n            \"standalone\": true,\n            \"type\": \"document\",\n            \"title\": \"Kion: Collaborative Upskilling\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F6508293acd9604b1391ca2fd%2Fn3nv3ty5dg6ml0sfivun.webp?alt=media&token=77c015c3-c4d5-4b35-875b-9384c3c01bd3\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:41:00.436Z\",\n            \"updatedAt\": \"2023-09-18T10:42:27.735Z\"\n        },\n        {\n            \"_id\": \"65082847a2b9610009ee7775\",\n            \"standalone\": true,\n            \"type\": \"document\",\n            \"title\": \"Rapyd: Improving onboarding effectiveness across the globe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2FuserKnowledge%2F64ae8d32cb525e00095e8b76%2F65082847a2b9610009ee7775%2FidxKqLpmSt.jpeg?alt=media&token=c694b544-f2df-45dc-b511-9aa48f3676c8\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T10:36:55.686Z\",\n            \"updatedAt\": \"2023-09-18T10:42:00.240Z\",\n            \"description\": \"Rapyd: Improving onboarding effectiveness across the globe\"\n        },\n        {\n            \"_id\": \"64ff12a2bd934b00095d68cd\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Journey\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-11T13:14:10.072Z\",\n            \"updatedAt\": \"2023-09-11T13:14:10.072Z\"\n        },\n        {\n            \"_id\": \"64d4d44c3c86600008eb0e1e\",\n            \"standalone\": true,\n            \"description\": \"Jacco van der Kooij from Winning By Design describes The SaaS Sales Methodology in context to other sales methodologies, and why SaaS needs its own methodolo...\",\n            \"photoUrl\": \"https://i.ytimg.com/vi/HCC-WqsVBCk/hqdefault.jpg\",\n            \"type\": \"video\",\n            \"title\": \"The SaaS Sales Methodology - A Customer Centric Approach to Selling | Sales as a Science #1\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-08-10T12:13:00.243Z\",\n            \"updatedAt\": \"2023-08-10T12:13:00.243Z\"\n        },\n        {\n            \"_id\": \"64ae8f62c935220009c3f8f9\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Update June 2023\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:32:50.510Z\",\n            \"updatedAt\": \"2023-07-12T11:33:12.623Z\"\n        },\n        {\n            \"_id\": \"64ae8f0e1bd72d0008a2f165\",\n            \"standalone\": true,\n            \"title\": \"Client Onboarding Feedback Process\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63ed00ab871f3e00080bc740%2F1676480643128%2F1676480643404%2Ffeedback.png?alt=media&token=3bb7091f-d40e-426c-b3b5-becf156dd3b9\",\n            \"type\": \"learning\",\n            \"description\": \"Combine all your client feedback into a single accessible space. \",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:26.858Z\",\n            \"updatedAt\": \"2023-07-12T11:31:26.858Z\"\n        },\n        {\n            \"_id\": \"64ae8efa1ebb7800083b4aa8\",\n            \"standalone\": true,\n            \"title\": \"Sales/Customer Success Handover\",\n            \"photoUrl\": \"https://unsplash.com/photos/vbxyFxlgpjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxtZWV0aW5nfGVufDB8MHx8fDE2NzYyODY3MDc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:06.985Z\",\n            \"updatedAt\": \"2023-07-12T11:31:06.985Z\"\n        }\n    ]\n}"},{"id":"8652f27b-39ad-4ce8-bd86-3ac688956ed6","name":"List Units-  by training type (course)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"type\": \"learning\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/units/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1e86f-X4RU/Hag17dA7cvRRufcw7v1MZE\""},{"key":"vary","value":"Accept-Encoding"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 30 Apr 2025 09:56:49 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 262,\n    \"data\": [\n        {\n            \"_id\": \"64ae8e5df87e180009051f37\",\n            \"standalone\": true,\n            \"title\": \"Security & Data Protection\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:28:29.662Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.636Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8e6ac935220009c3f276\",\n            \"standalone\": true,\n            \"title\": \"Inclusion & Diversity In The Workplace\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6267a5b009d744b808c0dede%2F1651604560564%2FInclusion%20%26%20Diversity%20In%20The%20Workplace.png?alt=media&token=bceadcf3-da3b-4da0-8ce8-b6e064d51815\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:28:42.696Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.638Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"64ae8efa1ebb7800083b4aa8\",\n            \"standalone\": true,\n            \"title\": \"Sales/Customer Success Handover\",\n            \"photoUrl\": \"https://unsplash.com/photos/vbxyFxlgpjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxtZWV0aW5nfGVufDB8MHx8fDE2NzYyODY3MDc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:06.985Z\",\n            \"updatedAt\": \"2023-07-12T11:31:06.985Z\"\n        },\n        {\n            \"_id\": \"64ae8f0e1bd72d0008a2f165\",\n            \"standalone\": true,\n            \"title\": \"Client Onboarding Feedback Process\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63ed00ab871f3e00080bc740%2F1676480643128%2F1676480643404%2Ffeedback.png?alt=media&token=3bb7091f-d40e-426c-b3b5-becf156dd3b9\",\n            \"type\": \"learning\",\n            \"description\": \"Combine all your client feedback into a single accessible space. \",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:26.858Z\",\n            \"updatedAt\": \"2023-07-12T11:31:26.858Z\"\n        },\n        {\n            \"_id\": \"64ae8f23c935220009c3f7b4\",\n            \"standalone\": true,\n            \"title\": \"Helping Clients Succeed: A CSM's Guide\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F64ae8f23c935220009c3f7b4%2F1708523115302%2F1708523124329%2Ffor_breakfast_1_1708523124329.gif?alt=media&token=8d0705bf-d372-4f24-bb06-4854209cf87a\",\n            \"type\": \"learning\",\n            \"description\": \"An organized approach for identifying clients' needs and helping them reach their goals.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:31:47.041Z\",\n            \"updatedAt\": \"2025-04-09T11:24:00.253Z\"\n        },\n        {\n            \"_id\": \"64ae8f4f10d0ab0009c034b7\",\n            \"standalone\": true,\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"type\": \"learning\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:32:31.151Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.642Z\"\n        },\n        {\n            \"_id\": \"64ae8f62c935220009c3f8f9\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Update June 2023\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:32:50.510Z\",\n            \"updatedAt\": \"2023-07-12T11:33:12.623Z\"\n        },\n        {\n            \"_id\": \"64ae8f861ebb7800083b4da6\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Product Update July 2023\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-07-12T11:33:26.341Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.644Z\"\n        },\n        {\n            \"_id\": \"64ae8fee1add050009ff2e0d\",\n            \"standalone\": true,\n            \"title\": \"Share Version Updates with Customer-Facing Teams\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f37096d0c2e70007efa990%2F1676898884941%2F1676898891469%2FUpdate.png?alt=media&token=699951a0-da7f-4eb8-a433-f1a65bd61b6e\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-07-12T11:35:10.058Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.646Z\"\n        },\n        {\n            \"_id\": \"64d4cd123c86600008eae9a9\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:10.628Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.669Z\"\n        },\n        {\n            \"_id\": \"64d4cd26e7517800092166ac\",\n            \"standalone\": true,\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:30.912Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.671Z\"\n        },\n        {\n            \"_id\": \"64d4cd40cca5da0009614dbd\",\n            \"standalone\": true,\n            \"title\": \" Sales Discovery Call Template\",\n            \"photoUrl\": \"https://unsplash.com/photos/6YKbEudk7rM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxkaXNjb3ZlcnxlbnwwfDB8fHwxNjQ3NzkxOTI2\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:42:56.427Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.674Z\"\n        },\n        {\n            \"_id\": \"64d4cd57ab2ba50008fcbfa7\",\n            \"standalone\": true,\n            \"title\": \"5 Effective Sales Prospecting Email Templates\",\n            \"photoUrl\": \"https://unsplash.com/photos/3Mhgvrk4tjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbWFpbHxlbnwwfDB8fHwxNjc1ODc5OTMy\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T11:43:19.144Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.677Z\"\n        },\n        {\n            \"_id\": \"64d4e39a1eb9fb00080fd0fc\",\n            \"standalone\": true,\n            \"title\": \"30-60-90 Employee Onboarding Plan\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a459b316ec440008db6515%2F1673199628285%2F1673199628545%2F30-60-90.png?alt=media&token=8071aee4-0856-4c3a-86bb-a3a6bf15ca06\",\n            \"type\": \"learning\",\n            \"description\": \"Map out a clear course of action for a new employee during the first 30, 60, and 90 days of their new job.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-08-10T13:18:18.313Z\",\n            \"updatedAt\": \"2025-04-08T15:14:45.689Z\"\n        },\n        {\n            \"_id\": \"64d4ebbb4a373d0009863205\",\n            \"standalone\": true,\n            \"title\": \"How To Purchase Content from our On-Demand Catalog\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"createdAt\": \"2023-08-10T13:52:59.741Z\",\n            \"updatedAt\": \"2023-08-10T13:52:59.741Z\"\n        },\n        {\n            \"_id\": \"64d4ebd1ab2ba50008fd57a1\",\n            \"standalone\": true,\n            \"title\": \"Juno Journey Guide-How to use Juno feature by feature\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a429ad4fac060007a6367a%2F1675850366603%2F1675850366863%2FScreen%20Shot%202022-04-20%20at%2016.59%201.png?alt=media&token=34a0c48f-f3af-4572-8274-4ba1645176c5\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"createdAt\": \"2023-08-10T13:53:21.764Z\",\n            \"updatedAt\": \"2023-08-10T13:53:21.764Z\"\n        },\n        {\n            \"_id\": \"64d4ebe3ab2ba50008fd5881\",\n            \"standalone\": true,\n            \"title\": \"Juno Journey Guide - How to create content\",\n            \"photoUrl\": \"https://unsplash.com/photos/6gY2MGFecpk/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxjcmVhdGV8ZW58MHwwfHx8MTY1ODM5NzEwMg\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"createdAt\": \"2023-08-10T13:53:39.585Z\",\n            \"updatedAt\": \"2023-08-10T13:53:39.585Z\"\n        },\n        {\n            \"_id\": \"64ddd72767487500085ddac5\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"createdAt\": \"2023-08-17T08:15:35.477Z\",\n            \"updatedAt\": \"2023-08-17T08:15:35.477Z\"\n        },\n        {\n            \"_id\": \"64df49ab5648d3000afbc6d6\",\n            \"standalone\": true,\n            \"title\": \"Workplace Harassment\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-08-18T10:36:27.928Z\",\n            \"updatedAt\": \"2023-08-18T10:36:27.928Z\"\n        },\n        {\n            \"_id\": \"64e33d70e79c5d000af18707\",\n            \"standalone\": true,\n            \"title\": \"5 Effective Sales Prospecting Email Templates\",\n            \"photoUrl\": \"https://unsplash.com/photos/3Mhgvrk4tjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbWFpbHxlbnwwfDB8fHwxNjc1ODc5OTMy\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-08-21T10:33:20.347Z\",\n            \"updatedAt\": \"2023-08-21T10:33:20.347Z\"\n        },\n        {\n            \"_id\": \"64e775db5a923900095d4438\",\n            \"standalone\": true,\n            \"title\": \"Fire & Safety Guidelines  \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626501ae265147e29a3d0716%2F1651604435494%2FSchool-fire-safety.jpeg?alt=media&token=1075e279-bf23-4bf9-b4fb-83cf903cde5a\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-08-24T15:23:07.321Z\",\n            \"updatedAt\": \"2023-08-24T15:23:07.321Z\"\n        },\n        {\n            \"_id\": \"64edfddd6b84130008435b23\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"createdAt\": \"2023-08-29T14:17:01.983Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.682Z\"\n        },\n        {\n            \"_id\": \"64ef8376fc48fc000985eb29\",\n            \"standalone\": true,\n            \"title\": \"Fire & Safety Guidelines  \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626501ae265147e29a3d0716%2F1651604435494%2FSchool-fire-safety.jpeg?alt=media&token=1075e279-bf23-4bf9-b4fb-83cf903cde5a\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-08-30T17:59:18.904Z\",\n            \"updatedAt\": \"2023-08-30T18:00:24.923Z\"\n        },\n        {\n            \"_id\": \"64f8466a54531c00088b68a6\",\n            \"standalone\": true,\n            \"title\": \"Inclusion & Diversity In The Workplace\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6267a5b009d744b808c0dede%2F1651604560564%2FInclusion%20%26%20Diversity%20In%20The%20Workplace.png?alt=media&token=bceadcf3-da3b-4da0-8ce8-b6e064d51815\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-09-06T09:29:14.690Z\",\n            \"updatedAt\": \"2023-09-06T09:29:14.690Z\"\n        },\n        {\n            \"_id\": \"6501f19280a5dd00093550b0\",\n            \"standalone\": true,\n            \"title\": \"30-60-90 Employee Onboarding Plan\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a459b316ec440008db6515%2F1673199628285%2F1673199628545%2F30-60-90.png?alt=media&token=8071aee4-0856-4c3a-86bb-a3a6bf15ca06\",\n            \"type\": \"learning\",\n            \"description\": \"Map out a clear course of action for a new employee during the first 30, 60, and 90 days of their new job.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-09-13T17:29:54.037Z\",\n            \"updatedAt\": \"2023-09-13T17:30:20.235Z\"\n        },\n        {\n            \"_id\": \"650862281f760d000975a0ba\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Miami Office Procedures\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T14:43:52.921Z\",\n            \"updatedAt\": \"2023-09-18T14:44:07.186Z\"\n        },\n        {\n            \"_id\": \"650862c4465eea0009aa1d07\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"NYC Office Guidelines\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-09-18T14:46:28.902Z\",\n            \"updatedAt\": \"2023-09-18T14:58:24.477Z\"\n        },\n        {\n            \"_id\": \"650bffba79efaf0008eec380\",\n            \"standalone\": true,\n            \"title\": \"Pre-Onboarding Template\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-09-21T08:32:58.711Z\",\n            \"updatedAt\": \"2023-09-21T08:32:58.711Z\"\n        },\n        {\n            \"_id\": \"650d6a37441154000916b17c\",\n            \"standalone\": true,\n            \"title\": \"Inclusion & Diversity In The Workplace\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6267a5b009d744b808c0dede%2F1651604560564%2FInclusion%20%26%20Diversity%20In%20The%20Workplace.png?alt=media&token=bceadcf3-da3b-4da0-8ce8-b6e064d51815\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"createdAt\": \"2023-09-22T10:19:35.012Z\",\n            \"updatedAt\": \"2023-09-22T10:19:35.012Z\"\n        },\n        {\n            \"_id\": \"65141685b5ee6900090470d8\",\n            \"standalone\": true,\n            \"title\": \"Fire & Safety Guidelines  \",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626501ae265147e29a3d0716%2F1651604435494%2FSchool-fire-safety.jpeg?alt=media&token=1075e279-bf23-4bf9-b4fb-83cf903cde5a\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-27T11:48:21.732Z\",\n            \"updatedAt\": \"2023-09-27T11:48:21.732Z\"\n        },\n        {\n            \"_id\": \"6516b637554be1000995e1ce\",\n            \"standalone\": true,\n            \"title\": \"Pre-Onboarding Template\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-09-29T11:34:15.996Z\",\n            \"updatedAt\": \"2023-09-29T11:34:15.996Z\"\n        },\n        {\n            \"_id\": \"651c1b203b52e900091e7594\",\n            \"standalone\": true,\n            \"title\": \"30-60-90 Employee Onboarding Plan\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63a459b316ec440008db6515%2F1673199628285%2F1673199628545%2F30-60-90.png?alt=media&token=8071aee4-0856-4c3a-86bb-a3a6bf15ca06\",\n            \"type\": \"learning\",\n            \"description\": \"Map out a clear course of action for a new employee during the first 30, 60, and 90 days of their new job.\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-10-03T13:46:08.164Z\",\n            \"updatedAt\": \"2023-10-03T13:46:08.164Z\"\n        },\n        {\n            \"_id\": \"6523fcd359e0470008b01be8\",\n            \"standalone\": true,\n            \"title\": \"Sales/Customer Success Handover\",\n            \"photoUrl\": \"https://unsplash.com/photos/vbxyFxlgpjM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw0fHxtZWV0aW5nfGVufDB8MHx8fDE2NzYyODY3MDc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-10-09T13:14:59.139Z\",\n            \"updatedAt\": \"2023-10-09T13:14:59.139Z\"\n        },\n        {\n            \"_id\": \"65255c0cd992c10009ea023a\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"createdAt\": \"2023-10-10T14:13:32.710Z\",\n            \"updatedAt\": \"2023-10-10T14:13:32.710Z\"\n        },\n        {\n            \"_id\": \"654387aa0ff10800094e3d18\",\n            \"standalone\": true,\n            \"title\": \"Workplace Harassment\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"createdAt\": \"2023-11-02T11:27:38.935Z\",\n            \"updatedAt\": \"2023-11-02T11:27:38.935Z\"\n        },\n        {\n            \"_id\": \"6548f532cc7e8a0009130797\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-06T14:16:18.576Z\",\n            \"updatedAt\": \"2023-11-06T14:16:18.576Z\"\n        },\n        {\n            \"_id\": \"6553a0f8c3289c000ad779d3\",\n            \"standalone\": true,\n            \"title\": \"Security & Data Protection\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"createdAt\": \"2023-11-14T16:31:52.708Z\",\n            \"updatedAt\": \"2023-11-14T16:31:52.708Z\"\n        },\n        {\n            \"_id\": \"65564ff59446aa0009fdf7aa\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-16T17:23:01.818Z\",\n            \"updatedAt\": \"2023-11-16T17:23:01.818Z\"\n        },\n        {\n            \"_id\": \"655de35640b7360009bb4182\",\n            \"standalone\": true,\n            \"title\": \"Security & Data Protection\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"createdAt\": \"2023-11-22T11:17:42.615Z\",\n            \"updatedAt\": \"2023-11-22T11:17:42.615Z\"\n        },\n        {\n            \"_id\": \"6564fe05fe885000092c8de0\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-27T20:37:25.932Z\",\n            \"updatedAt\": \"2023-11-27T20:37:25.932Z\"\n        },\n        {\n            \"_id\": \"65675935bf8fab0008f05249\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-11-29T15:31:01.921Z\",\n            \"updatedAt\": \"2023-11-29T15:31:01.921Z\"\n        },\n        {\n            \"_id\": \"6571d7717663820009adfa46\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-07T14:32:17.816Z\",\n            \"updatedAt\": \"2023-12-07T14:32:17.816Z\"\n        },\n        {\n            \"_id\": \"65784579cdf6800009a4673e\",\n            \"standalone\": true,\n            \"creator\": \"65783e74417a430009ec3f0c\",\n            \"title\": \"ddffdfdfd\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2023-12-12T11:35:21.950Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.686Z\"\n        },\n        {\n            \"_id\": \"65784fa57c446000092090eb\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3645950ae3800098024b6\",\n            \"createdAt\": \"2023-12-12T12:18:45.633Z\",\n            \"updatedAt\": \"2023-12-12T12:19:35.837Z\"\n        },\n        {\n            \"_id\": \"658d5c6884fec1000acd4104\",\n            \"standalone\": true,\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"type\": \"learning\",\n            \"description\": \"\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"createdAt\": \"2023-12-28T11:30:48.382Z\",\n            \"updatedAt\": \"2023-12-28T11:30:48.382Z\"\n        },\n        {\n            \"_id\": \"6593c723eef6b30009a9e181\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"2023\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-02T08:19:47.132Z\",\n            \"updatedAt\": \"2024-01-02T08:20:03.966Z\"\n        },\n        {\n            \"_id\": \"65b128d00baaeed6bafa66a3\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-24T15:12:16.093Z\",\n            \"updatedAt\": \"2024-01-24T15:12:16.093Z\"\n        },\n        {\n            \"_id\": \"65ba57d79e0567e5ecb69587\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-01-31T14:23:19.330Z\",\n            \"updatedAt\": \"2024-01-31T14:23:38.986Z\"\n        },\n        {\n            \"_id\": \"65c10d365839bc9018572c79\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-05T16:30:46.713Z\",\n            \"updatedAt\": \"2024-02-05T16:30:46.713Z\"\n        },\n        {\n            \"_id\": \"65c3dac884c0558e3c998707\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-07T19:32:24.216Z\",\n            \"updatedAt\": \"2024-02-07T19:32:24.216Z\"\n        },\n        {\n            \"_id\": \"65ccdb1e638dba2b75d67346\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-14T15:24:14.436Z\",\n            \"updatedAt\": \"2024-02-14T15:24:14.436Z\"\n        },\n        {\n            \"_id\": \"65cd3338a6e53d259f1e1796\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-14T21:40:08.962Z\",\n            \"updatedAt\": \"2024-02-14T21:40:08.962Z\"\n        },\n        {\n            \"_id\": \"65cddeb67b41984f0344ae33\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-15T09:51:50.797Z\",\n            \"updatedAt\": \"2024-02-15T09:51:50.797Z\"\n        },\n        {\n            \"_id\": \"65d345197360b1b8825f1018\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-19T12:10:01.915Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.689Z\"\n        },\n        {\n            \"_id\": \"65dcaabe1b516c52c72a01f1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-02-26T15:14:06.318Z\",\n            \"updatedAt\": \"2024-02-26T15:21:27.845Z\"\n        },\n        {\n            \"_id\": \"65e866664c8b651dc8e67ea1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-06T12:49:42.604Z\",\n            \"updatedAt\": \"2024-03-06T12:49:42.604Z\"\n        },\n        {\n            \"_id\": \"65f3164bae3353daa68951c9\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-14T15:22:51.649Z\",\n            \"updatedAt\": \"2024-03-14T15:22:51.649Z\"\n        },\n        {\n            \"_id\": \"65f9cedd1d5adfb26fd9d845\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-19T17:43:57.906Z\",\n            \"updatedAt\": \"2024-03-19T17:43:57.906Z\"\n        },\n        {\n            \"_id\": \"6602e966453d07b9bd9721e1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-26T15:27:34.354Z\",\n            \"updatedAt\": \"2024-03-26T15:27:34.354Z\"\n        },\n        {\n            \"_id\": \"66057ca24ab67d37db2414d3\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-03-28T14:20:18.590Z\",\n            \"updatedAt\": \"2024-03-28T14:20:18.590Z\"\n        },\n        {\n            \"_id\": \"660d4a245d18c699a300250b\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-03T12:23:00.737Z\",\n            \"updatedAt\": \"2024-04-03T12:23:00.737Z\"\n        },\n        {\n            \"_id\": \"6610364566d76e1d69cfcee2\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"650072f3a3f97a000893374b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-05T17:35:01.261Z\",\n            \"updatedAt\": \"2024-04-05T17:35:01.261Z\"\n        },\n        {\n            \"_id\": \"66166f2e64efb7e3d5928ad2\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-10T10:51:26.363Z\",\n            \"updatedAt\": \"2024-04-10T10:51:26.363Z\"\n        },\n        {\n            \"_id\": \"6616c197a8c0b7b72644294a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-10T16:43:03.730Z\",\n            \"updatedAt\": \"2024-04-10T16:43:03.730Z\"\n        },\n        {\n            \"_id\": \"6616c3f964efb7e3d597651c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-10T16:53:13.854Z\",\n            \"updatedAt\": \"2024-04-10T16:53:13.854Z\"\n        },\n        {\n            \"_id\": \"661d3c70247b787ac90359a3\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-15T14:40:48.354Z\",\n            \"updatedAt\": \"2024-04-15T14:40:48.354Z\"\n        },\n        {\n            \"_id\": \"661e846338d18ffb6c0c7749\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65f382078580fb8da7bbc717%2F1710458250527%2F1710458256058%2Frm_1710458256058.jpg?alt=media&token=4d43b6c0-8a15-4352-99be-fe2f8a1728c0\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"RM & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-16T14:00:03.999Z\",\n            \"updatedAt\": \"2024-04-16T14:00:03.999Z\"\n        },\n        {\n            \"_id\": \"661e84c6b1018e3b3f9ad665\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660aceece39fbbe65be803dc%2F1711985239221%2F1711985245425%2Fend_1711985245425.png?alt=media&token=3c575648-04c2-4020-bf0f-ad7931fe50c4\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for Endava\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-16T14:01:42.867Z\",\n            \"updatedAt\": \"2024-08-05T09:32:49.514Z\"\n        },\n        {\n            \"_id\": \"661e88d6451c6f0fe5287730\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F661e88d6451c6f0fe5287730%2F1713277496277%2F1713277501742%2Ft_sys_sq_1713277501743.png?alt=media&token=931b83b0-3f0d-49f4-8eff-b6ce2218160b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"T-Systems & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-16T14:19:02.954Z\",\n            \"updatedAt\": \"2024-04-16T14:31:15.775Z\"\n        },\n        {\n            \"_id\": \"661f98bcd9be04774647aa71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65f3730aa1718f2d2058baaf%2F1710453648625%2F1710453651678%2Fxfab_1710453651678.jpg?alt=media&token=741af392-ba56-4c65-bf4c-0002c65000e7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"X-FAB & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-17T09:39:08.298Z\",\n            \"updatedAt\": \"2024-04-17T09:48:53.317Z\"\n        },\n        {\n            \"_id\": \"661f9b64bdd6a549551a82da\",\n            \"photoUrl\": \"https://unsplash.com/photos/gp8BLyaTaA0/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8dXNlcnN8ZW58MHwwfHx8MTY5NTA0NDI5NHww\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"SSO and User Provisioning Integration with Juno Journey\",\n            \"description\": \"This guide empowers IT admins to streamline SSO and user data sync integration with Juno Journey. Learn how to set up SSO with SAML 2.0, sync user data, and troubleshoot common issues, resulting in a more seamless user experience on the platform.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-17T09:50:28.918Z\",\n            \"updatedAt\": \"2025-04-23T17:21:14.002Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"661f9b8ad9be04774647bf47\",\n            \"photoUrl\": \"https://unsplash.com/photos/06MHFfYv6YY/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw1fHxnb29nbGV8ZW58MHwwfHx8MTY2NzIyMzg3Mg\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Google Workspace SSO & Directory sync\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-17T09:51:06.311Z\",\n            \"updatedAt\": \"2025-04-23T15:44:15.128Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"6620f26352d99f3a257a9aa0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6620f26352d99f3a257a9aa0%2F1713435350176%2F1713435353954%2Frisk_1713435353955.jpg?alt=media&token=dfa4f556-e3f8-4460-9194-781481899229\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Risk.inc & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-18T10:13:55.248Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.746Z\"\n        },\n        {\n            \"_id\": \"662135690e27f09834fedd39\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660aef200a1cb35e072c18a9%2F1713452013622%2F1713452015940%2Faccordion_partners_logo_1713452015940.jpeg?alt=media&token=3bf7b598-3662-48bf-ac24-9eeefe36b317\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"Accordion & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-18T14:59:53.511Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.696Z\"\n        },\n        {\n            \"_id\": \"662135bf0e27f09834fedf71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660aef200a1cb35e072c18a9%2F1713452013622%2F1713452015940%2Faccordion_partners_logo_1713452015940.jpeg?alt=media&token=3bf7b598-3662-48bf-ac24-9eeefe36b317\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"Accordion & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-18T15:01:19.793Z\",\n            \"updatedAt\": \"2024-04-18T15:01:19.793Z\"\n        },\n        {\n            \"_id\": \"6628e2d8ca9b21d828b4cced\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Sales team Perf\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-24T10:45:44.694Z\",\n            \"updatedAt\": \"2024-04-24T10:46:05.885Z\"\n        },\n        {\n            \"_id\": \"662b9dcc8dc101f348a8febd\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"example quiz\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:27:56.466Z\",\n            \"updatedAt\": \"2024-04-26T12:28:12.944Z\"\n        },\n        {\n            \"_id\": \"662ba318c6869d4750d11205\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F662ba318c6869d4750d11205%2F1714135952538%2F1714135955312%2Fideals_solutions_group_logo_1714135955312.jpeg?alt=media&token=8ccfc838-d079-4004-97d1-4bf46a6feb37\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"iDeals & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-26T12:50:32.690Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.781Z\"\n        },\n        {\n            \"_id\": \"6630c61f561e05260f9923db\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6630c61f561e05260f9923db%2F1715236034166%2F1715236036906%2FTIP2_1715236036906.jpg?alt=media&token=883a2e97-5821-48cd-92d4-a3c9ebed93ca\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Trafigura & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-04-30T10:21:19.607Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.753Z\"\n        },\n        {\n            \"_id\": \"6631e5eb8900e3ee2653007c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65e087b66152ea6a2bbea6be%2F1709213954972%2F1709213957169%2Fbright_machines_microfactories_1709213957169.webp?alt=media&token=b0e692d3-f4b5-4a63-9f91-fe61438c3e88\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Bright Machines & Juno Journey\",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-01T06:49:15.555Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.748Z\"\n        },\n        {\n            \"_id\": \"66349d3aceb532bbf87818e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66349d3aceb532bbf87818e3%2F1714724248611%2F1714724251055%2FLarge___Wordmark___Whitebg_1714724251055.png?alt=media&token=6050a13b-10e1-4908-8eb3-c3903f5e3f05\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"TeamTailor & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-03T08:15:54.923Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.750Z\"\n        },\n        {\n            \"_id\": \"663b7f6ace1ae565890f5688\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-08T13:34:34.480Z\",\n            \"updatedAt\": \"2024-05-08T13:34:34.480Z\"\n        },\n        {\n            \"_id\": \"663ca354631602f7e137df2d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:20:04.890Z\",\n            \"updatedAt\": \"2024-05-09T10:20:04.890Z\"\n        },\n        {\n            \"_id\": \"663ca392a910cba3dd7c285a\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:21:06.240Z\",\n            \"updatedAt\": \"2024-05-09T10:21:06.240Z\"\n        },\n        {\n            \"_id\": \"663ca3e9631602f7e137e275\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T10:22:33.835Z\",\n            \"updatedAt\": \"2024-05-09T10:22:33.835Z\"\n        },\n        {\n            \"_id\": \"663ccf9484e0e667338a7598\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F663ccf9484e0e667338a7598%2F1715789979806%2F1715790001771%2Fend_1715790001772.jpg?alt=media&token=b6ffe9a0-a1fb-4fa0-a771-bd5210ebb656\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Endava & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-09T13:28:52.659Z\",\n            \"updatedAt\": \"2024-05-15T16:20:02.915Z\"\n        },\n        {\n            \"_id\": \"663dec1e89d2675d383c10f1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-10T09:42:54.312Z\",\n            \"updatedAt\": \"2024-05-10T09:42:54.312Z\"\n        },\n        {\n            \"_id\": \"66408b1a984a525eb94eb9d0\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-12T09:25:46.575Z\",\n            \"updatedAt\": \"2024-05-12T09:25:46.575Z\"\n        },\n        {\n            \"_id\": \"6644e0e6f3785bb0e8ede50e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6644e0e6f3785bb0e8ede50e%2F1715790264381%2F1715790269379%2Ftabit_1715790269379.jpeg?alt=media&token=81ebe9e5-39d9-4dce-8885-50d6cacbca45\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Tabit & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-15T16:20:54.655Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.705Z\"\n        },\n        {\n            \"_id\": \"6646138a6136dbb776bbec6a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65f3730aa1718f2d2058baaf%2F1710453648625%2F1710453651678%2Fxfab_1710453651678.jpg?alt=media&token=741af392-ba56-4c65-bf4c-0002c65000e7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"X-FAB & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-16T14:09:14.619Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.708Z\"\n        },\n        {\n            \"_id\": \"664664b66c4f3ef2f50651c3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F664664b66c4f3ef2f50651c3%2F1715896951101%2F1715896956562%2Fmcs_1715896956563.jpg?alt=media&token=be5471a5-8eae-4988-9aa6-b6e82727a0ff\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"MCS360 & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-16T19:55:34.494Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.711Z\"\n        },\n        {\n            \"_id\": \"6650782191b09487e47a0219\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"64d38375ece62f0009cc785f\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-24T11:21:05.321Z\",\n            \"updatedAt\": \"2024-05-24T11:21:05.321Z\"\n        },\n        {\n            \"_id\": \"6655babc6e620061cb8822ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6655babc6e620061cb8822ac%2F1716894459805%2F1716894462966%2Faviv_1716894462966.png?alt=media&token=80f05e1b-daf0-4e93-b9aa-f1fb6c524091\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"AVIV & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-28T11:06:36.197Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.793Z\"\n        },\n        {\n            \"_id\": \"6657312ac99b392b8c964d79\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6657312ac99b392b8c964d79%2F1717012035704%2F1717012041377%2Fpushpay_1717012041377.jpg?alt=media&token=7a259c07-1b44-4326-b049-ad106c0bd89a\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Pushpay & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T13:44:10.844Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.727Z\"\n        },\n        {\n            \"_id\": \"6657865c7d985c5be7c1c547\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6657865c7d985c5be7c1c547%2F1717012289310%2F1717012292112%2Fday_1717012292112.jpg?alt=media&token=291f25a1-be93-4148-9603-d857b2fab6da\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Daylight & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-29T19:47:40.354Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.787Z\"\n        },\n        {\n            \"_id\": \"6659b79e3cd5633d7fe53ff9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6659b79e3cd5633d7fe53ff9%2F1717156127301%2F1717156132109%2F365_1717156132109.jpg?alt=media&token=226b2d47-406a-481c-a52c-bffcbf1c5a1f\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Anywhere 365 & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-05-31T11:42:22.561Z\",\n            \"updatedAt\": \"2024-05-31T11:56:44.915Z\"\n        },\n        {\n            \"_id\": \"665da1eeefe9a8b9cfb56b29\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F665da1eeefe9a8b9cfb56b29%2F1744115335794%2F1744115339140%2Ftile_Juno_Icon_1744115339140.png?alt=media&token=d462e46c-6944-4d76-b0e7-88a1c068980f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T10:58:54.216Z\",\n            \"updatedAt\": \"2025-04-30T08:50:55.524Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"665de1ef4ff4198eb03f4a81\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F665de1ef4ff4198eb03f4a81%2F1717429592519%2F1717429595702%2Fe24ebfe18c1e5f8e440dc46cbb3dcb08_1717429595702.png?alt=media&token=79e5542e-f31f-40cd-b976-c8cf320d4a44\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Blueground & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-03T15:31:59.922Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.732Z\"\n        },\n        {\n            \"_id\": \"66604a0f611893f7702d3a8c\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T11:20:47.023Z\",\n            \"updatedAt\": \"2024-06-05T11:20:47.023Z\"\n        },\n        {\n            \"_id\": \"66605c4f611893f7702df797\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T12:38:39.081Z\",\n            \"updatedAt\": \"2024-06-05T12:38:39.081Z\"\n        },\n        {\n            \"_id\": \"6660649e79411940223cd036\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65d841d3a051870790044b01%2F1708671585261%2F1708671588343%2Friskified_logo_feature_1708671588343.jpg?alt=media&token=0fc4eb94-2b71-4905-9970-c0128d3119e7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Riskified\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-05T13:14:06.794Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.791Z\"\n        },\n        {\n            \"_id\": \"66620c93a9b54d8c844dab45\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Partners& + Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-06T19:22:59.545Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.805Z\"\n        },\n        {\n            \"_id\": \"6666f4a27f7d3ebc73d3dd6d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T12:42:10.116Z\",\n            \"updatedAt\": \"2024-06-10T12:42:10.116Z\"\n        },\n        {\n            \"_id\": \"6666fb157f7d3ebc73d45886\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Keepet & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T13:09:41.776Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.807Z\"\n        },\n        {\n            \"_id\": \"66676e866aaae3eea303df18\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-10T21:22:14.198Z\",\n            \"updatedAt\": \"2024-06-10T21:23:31.061Z\"\n        },\n        {\n            \"_id\": \"666ad6014b057320e362ca5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F666ad6014b057320e362ca5e%2F1718277718207%2F1718277721128%2Fukl_1718277721128.jpeg?alt=media&token=3fbbfeaf-6a0e-4a4a-b09f-752f20a9a6bb\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Uklon & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-13T11:20:33.969Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.735Z\"\n        },\n        {\n            \"_id\": \"667041f35c58c9a3c6f11355\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F64f59e5532b5110009c7eb45%2F1699352187952%2F1699352192008%2FJuno%20Journey%20Product%20Release%20Notes%20Course.png?alt=media&token=715f9dc7-85f5-43d8-a4d6-6f6081927260\",\n            \"standalone\": true,\n            \"creator\": \"64da167c0bc1ac0009960bed\",\n            \"title\": \"Juno Journey Product Release Notes\",\n            \"description\": \"Read about the upcoming releases or refresh your memory about previous ones to stay ahead of the curve!\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T14:02:27.010Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.737Z\"\n        },\n        {\n            \"_id\": \"66704ea81dfbc5e55546aac4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66704ea81dfbc5e55546aac4%2F1718636240065%2F1718636242606%2Fbrampton_1718636242606.webp?alt=media&token=c01e46d7-be55-4cf0-9afc-bd5039eda114\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for City of Brampton\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-17T14:56:40.412Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.802Z\"\n        },\n        {\n            \"_id\": \"667153370700cece93300c2e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-18T09:28:23.806Z\",\n            \"updatedAt\": \"2024-06-18T09:28:23.806Z\"\n        },\n        {\n            \"_id\": \"6672cc99ce0d13a146e0cd16\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:33.952Z\",\n            \"updatedAt\": \"2024-06-19T12:18:33.952Z\"\n        },\n        {\n            \"_id\": \"6672cc9ff8cad23e26f5cdea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:39.504Z\",\n            \"updatedAt\": \"2024-06-19T12:18:39.504Z\"\n        },\n        {\n            \"_id\": \"6672cca5535687f2169516ba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:45.240Z\",\n            \"updatedAt\": \"2024-06-19T12:18:45.240Z\"\n        },\n        {\n            \"_id\": \"6672cca785cf6e12ee228f41\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SB Energy & Juno Journey    (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:47.284Z\",\n            \"updatedAt\": \"2024-06-19T12:18:47.284Z\"\n        },\n        {\n            \"_id\": \"6672cca8b28ae4948c980b51\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Magnolia & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-19T12:18:48.115Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.810Z\"\n        },\n        {\n            \"_id\": \"667436ef09b2e1b3cc3e5f4f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F667436ef09b2e1b3cc3e5f4f%2F1718892437038%2F1718892438946%2Fpricefx_1718892438946.jpeg?alt=media&token=5bf9f8ae-3b44-4f3a-92d9-9aa342c2d416\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for PriceFX\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:04:31.221Z\",\n            \"updatedAt\": \"2024-06-20T14:25:39.649Z\"\n        },\n        {\n            \"_id\": \"66743fd6d9f7bc31fda6e9d4\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-20T14:42:30.979Z\",\n            \"updatedAt\": \"2024-06-20T14:42:30.979Z\"\n        },\n        {\n            \"_id\": \"6679339713d7f621016fc8e7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64da167c0bc1ac0009960bed\",\n            \"title\": \"Juno's Quiz & Course Updates Review\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T08:51:35.773Z\",\n            \"updatedAt\": \"2024-06-24T08:57:17.734Z\"\n        },\n        {\n            \"_id\": \"6679589f377bb0cf506ebf9b\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-24T11:29:35.704Z\",\n            \"updatedAt\": \"2024-06-24T11:29:35.704Z\"\n        },\n        {\n            \"_id\": \"667ad00a5340d4a791876fbf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F666ad6014b057320e362ca5e%2F1718277718207%2F1718277721128%2Fukl_1718277721128.jpeg?alt=media&token=3fbbfeaf-6a0e-4a4a-b09f-752f20a9a6bb\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Uklon & Juno Journey   (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-25T14:11:22.672Z\",\n            \"updatedAt\": \"2024-06-25T14:11:26.924Z\"\n        },\n        {\n            \"_id\": \"667ad00f8ad4bb052c3a224b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F667ad00f8ad4bb052c3a224b%2F1719325264269%2F1719325267120%2Fnetomi_1719325267120.png?alt=media&token=778c950c-0f1b-48a5-882d-98773eaf1a04\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Netomi & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-25T14:11:27.446Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.743Z\"\n        },\n        {\n            \"_id\": \"667bbda1acc9387fd747df08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Valmont & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-26T07:05:05.891Z\",\n            \"updatedAt\": \"2024-06-26T07:05:28.646Z\"\n        },\n        {\n            \"_id\": \"667d1bc84e5849f02e2c3b9a\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"65e18eaa2f9b4e7d0e0f995b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-27T07:59:04.988Z\",\n            \"updatedAt\": \"2024-06-27T07:59:21.948Z\"\n        },\n        {\n            \"_id\": \"667d370b22f0c2780b412314\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F667d370b22f0c2780b412314%2F1719482337648%2F1719482339931%2FIT_recruitment_case_study_daisy_group_1719482339931.jpg?alt=media&token=6477a17b-8a3e-4adf-80f1-e0ab76ca4515\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Daisy & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-06-27T09:55:23.999Z\",\n            \"updatedAt\": \"2024-06-27T10:26:26.313Z\"\n        },\n        {\n            \"_id\": \"6683c2037d44389ade8b7258\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Introduction\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:01:55.336Z\",\n            \"updatedAt\": \"2024-07-02T09:03:55.344Z\"\n        },\n        {\n            \"_id\": \"6683c2edd073b5b8b729d8aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Introduction (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:49.483Z\",\n            \"updatedAt\": \"2024-07-02T09:05:49.483Z\"\n        },\n        {\n            \"_id\": \"6683c2eeb4894d65e436a505\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Day 2\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:50.104Z\",\n            \"updatedAt\": \"2024-07-02T09:06:29.700Z\"\n        },\n        {\n            \"_id\": \"6683c2f6d96a7ec87854cdcf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6683c2037d44389ade8b7258%2F1719910921581%2F1719910929143%2FiStock_157738423_copy_scaled_1719910929143.jpg?alt=media&token=33dc06bf-1253-4d04-8460-52efbb475e42\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"SKO Day 1\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-02T09:05:58.179Z\",\n            \"updatedAt\": \"2024-07-02T09:06:47.597Z\"\n        },\n        {\n            \"_id\": \"6685234ff5ed976346d55ba7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-03T10:09:19.050Z\",\n            \"updatedAt\": \"2024-07-03T10:09:19.050Z\"\n        },\n        {\n            \"_id\": \"6686837d6db74c654a05c11e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6686837d6db74c654a05c11e%2F1744115286570%2F1744115290556%2Ftile_Juno_Icon_1744115290556.png?alt=media&token=3bf46cef-00d4-49a2-9b6e-1a7801b40bf4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Advanced Discovery (MEDDPICC)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T11:11:57.635Z\",\n            \"updatedAt\": \"2025-04-17T06:05:10.705Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"66868ab46db74c654a064183\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66868ab46db74c654a064183%2F1720094365400%2F1720094369309%2FHI9M_1720094369309.gif?alt=media&token=c2bd9c66-e57c-4c43-92fb-5f4509cc605f\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Partner Deal Registration\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-04T11:42:44.988Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.755Z\",\n            \"description\": \"\"\n        },\n        {\n            \"_id\": \"668be7b418fab2dcb9c2de3c\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-08T13:20:52.154Z\",\n            \"updatedAt\": \"2024-07-08T13:20:52.154Z\"\n        },\n        {\n            \"_id\": \"668beedafee85e4a344282eb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668beedafee85e4a344282eb%2F1720447724819%2F1720447730604%2FCORPS_logo_300x200_1_1720447730604.jpg?alt=media&token=501be886-019c-49ae-8c73-ca6b3ddc6f64\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Corps Security & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-08T13:51:22.953Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.757Z\"\n        },\n        {\n            \"_id\": \"668eab1e2e601ced2156fec1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668eab1e2e601ced2156fec1%2F1720626364366%2F1720626367143%2FOne_Inc_Partner_Logo_640x360_MC6J3F3G3K5NC3JPIOAUVYIFLCAQ_1720626367144.jpg?alt=media&token=d04bd98d-2777-4557-9369-107d1e5ec192\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"OneInc & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T15:39:10.833Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.760Z\"\n        },\n        {\n            \"_id\": \"668eaecd2e601ced21570f48\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T15:54:53.857Z\",\n            \"updatedAt\": \"2024-07-10T15:55:09.095Z\"\n        },\n        {\n            \"_id\": \"668ecc192ec47393c8614633\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"665f1ce9f69e435223f72282\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-10T17:59:53.924Z\",\n            \"updatedAt\": \"2024-07-10T17:59:53.924Z\"\n        },\n        {\n            \"_id\": \"66976655b5500b71558a8571\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66976655b5500b71558a8571%2F1721198417919%2F1721198421153%2FRadancy_Vertical_Logo_1COL_RGB_1721198421154.webp?alt=media&token=f43606ed-e41d-4260-863c-da04d5ee8743\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Radancy & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T06:36:05.050Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.762Z\"\n        },\n        {\n            \"_id\": \"6697e19a4d11da96a2f80e76\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F622df15ddaaef02aa55f5411%2F1651605925327%2Fcold-call.png?alt=media&token=dd51e44a-c5ef-4feb-99d7-73f797b30d7f\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Craft the Perfect Cold Call Email\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-17T15:22:03.000Z\",\n            \"updatedAt\": \"2024-07-17T15:22:03.000Z\"\n        },\n        {\n            \"_id\": \"66991aa447b7eb22636cd4ea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Keepet & Juno Journey   (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T13:37:40.181Z\",\n            \"updatedAt\": \"2024-07-18T13:37:46.949Z\"\n        },\n        {\n            \"_id\": \"66991aa85f03fbeb5c5e6691\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66991aa85f03fbeb5c5e6691%2F1721309928479%2F1721309932201%2FJobber_Jobber_Raises__100_Million_Growth_Round_1721309932201.jpg?alt=media&token=e51973fe-ccdb-4ca4-8447-651451a7cfc6\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Jobber & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T13:37:44.913Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.766Z\"\n        },\n        {\n            \"_id\": \"669924f55f03fbeb5c5f04f2\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T14:21:41.726Z\",\n            \"updatedAt\": \"2024-07-18T14:21:41.726Z\"\n        },\n        {\n            \"_id\": \"669949c4757485cb10ba4837\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669949c4757485cb10ba4837%2F1721322023453%2F1721322039472%2Fnymbus_logo_1721322039472.jpeg?alt=media&token=eebf6e44-d6fa-45a8-9240-2f9e5195fb5f\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Nymbus & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T16:58:44.293Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.830Z\"\n        },\n        {\n            \"_id\": \"66995a3f47b7eb22636eb508\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66995a3f47b7eb22636eb508%2F1721326157800%2F1721326163698%2FRokt_1721326163698.jpg?alt=media&token=c3ac1cfa-ddc8-4c56-80e6-d5a64e9080bd\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Rokt & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T18:09:03.529Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.769Z\"\n        },\n        {\n            \"_id\": \"669963582d9affa55ab577d9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669963582d9affa55ab577d9%2F1721328645179%2F1721328648013%2Fteneo_og_placeholder_1721328648013.avif?alt=media&token=5e7a2ee1-209b-404a-9617-5bc79af148e8\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Teneo & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-18T18:47:52.438Z\",\n            \"updatedAt\": \"2024-07-18T19:08:22.594Z\"\n        },\n        {\n            \"_id\": \"669a32442dcd98971af2448e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669a32442dcd98971af2448e%2F1721381486721%2F1721381509719%2Finput_output_global_logo_1721381509720.jpeg?alt=media&token=a0b75268-c176-4891-8f1b-bb71fecd92a0\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"IOHK & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-19T09:30:44.994Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.024Z\"\n        },\n        {\n            \"_id\": \"669fa45ea0ff6123d063c682\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T12:38:54.991Z\",\n            \"updatedAt\": \"2024-07-23T12:38:54.991Z\"\n        },\n        {\n            \"_id\": \"669fd36b336a05829a57318c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F668eab1e2e601ced2156fec1%2F1720626364366%2F1720626367143%2FOne_Inc_Partner_Logo_640x360_MC6J3F3G3K5NC3JPIOAUVYIFLCAQ_1720626367144.jpg?alt=media&token=d04bd98d-2777-4557-9369-107d1e5ec192\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"OneInc & Juno Journey     (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T15:59:39.870Z\",\n            \"updatedAt\": \"2024-07-23T15:59:39.870Z\"\n        },\n        {\n            \"_id\": \"669fd36c8afc5cd1ae54fb0f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F669fd36c8afc5cd1ae54fb0f%2F1721750440829%2F1721750443462%2Fpub_1721750443462.png?alt=media&token=90ec0cf1-a59f-478f-b23d-ffcfebdd509d\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"PubMatic & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-23T15:59:40.818Z\",\n            \"updatedAt\": \"2024-07-29T17:38:02.101Z\"\n        },\n        {\n            \"_id\": \"66a2265a45b224f4e3bff049\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection @ natco \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-25T10:18:02.001Z\",\n            \"updatedAt\": \"2024-07-25T10:18:15.017Z\"\n        },\n        {\n            \"_id\": \"66a7d37df296727752563abd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66a7d37df296727752563abd%2F1722274800164%2F1722274802744%2Facuity_1722274802744.jpg?alt=media&token=61574b12-1a85-41ca-9186-acccc43e8fdc\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"acuity & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T17:38:05.957Z\",\n            \"updatedAt\": \"2024-08-02T14:42:49.185Z\"\n        },\n        {\n            \"_id\": \"66a7df673a8ada57966d7da1\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-29T18:28:55.315Z\",\n            \"updatedAt\": \"2024-07-29T18:28:55.315Z\"\n        },\n        {\n            \"_id\": \"66a9e58f197ba53d10f1aa06\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66a9e58f197ba53d10f1aa06%2F1722410636245%2F1722410639998%2Fklein_1722410639998.png?alt=media&token=e4cffbfd-9d83-47a2-af02-161b40f8ba68\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Kleinschmidt & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-07-31T07:19:43.182Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.773Z\"\n        },\n        {\n            \"_id\": \"66abbfb0f594cf54fd54bdd1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66abbfb0f594cf54fd54bdd1%2F1722531856092%2F1722531910516%2Fdigital_room_inc__logo_1722531910516.jpeg?alt=media&token=84ae955f-b283-44e2-a719-0a8bf03c6c7b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Digital Room & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-01T17:02:40.523Z\",\n            \"updatedAt\": \"2024-08-01T17:12:45.272Z\"\n        },\n        {\n            \"_id\": \"66ace79b771cc35271956926\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ace79b771cc35271956926%2F1722607714300%2F1722607719705%2Fmhk_1722607719705.png?alt=media&token=b2a8c423-e37e-4a4b-9d40-e1e971fd71a7\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"MedHOK & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-02T14:05:15.083Z\",\n            \"updatedAt\": \"2024-08-02T14:26:47.665Z\"\n        },\n        {\n            \"_id\": \"66b084753bacfa8a93147a39\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T07:51:17.825Z\",\n            \"updatedAt\": \"2024-08-05T07:51:17.825Z\"\n        },\n        {\n            \"_id\": \"66b09c4332a6229cbceb7cde\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66b09c4332a6229cbceb7cde%2F1722850481842%2F1722850484368%2Fesh_1722850484369.jpg?alt=media&token=6d23fef1-7846-4dbb-b751-d6ea94e2c96d\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for Esh\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-05T09:32:51.630Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.832Z\"\n        },\n        {\n            \"_id\": \"66b22554f5c5d4e694d761d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f37096d0c2e70007efa990%2F1676898884941%2F1676898891469%2FUpdate.png?alt=media&token=699951a0-da7f-4eb8-a433-f1a65bd61b6e\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Share Version Updates with Customer-Facing Teams\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T13:29:56.784Z\",\n            \"updatedAt\": \"2024-08-06T13:32:07.293Z\"\n        },\n        {\n            \"_id\": \"66b22d668e01455a12bd8d77\",\n            \"photoUrl\": \"https://unsplash.com/photos/RLw-UC03Gwc/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHxjaGVja2xpc3R8ZW58MHwwfHx8MTY1ODIzMzYyMA\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"HR Checklist For Successful Onboarding \",\n            \"description\": \"A sample checklist to track new hire processes.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-06T14:04:22.288Z\",\n            \"updatedAt\": \"2024-08-06T14:04:30.775Z\"\n        },\n        {\n            \"_id\": \"66ba1c4979c2c17e92b59f28\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-12T14:29:29.124Z\",\n            \"updatedAt\": \"2024-08-12T14:29:40.153Z\"\n        },\n        {\n            \"_id\": \"66c355c017c3ee816cf5894e\",\n            \"photoUrl\": \"https://unsplash.com/photos/6wAGwpsXHE0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHx3ZWxjb21lfGVufDB8MHx8fDE2NTIzNDU1ODM\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Pre-Onboarding Template\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-19T14:25:04.753Z\",\n            \"updatedAt\": \"2024-08-19T14:25:04.753Z\"\n        },\n        {\n            \"_id\": \"66c77b903a8c7fe0b22705b4\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Material from the Session\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-22T17:55:28.642Z\",\n            \"updatedAt\": \"2024-08-22T17:55:47.047Z\"\n        },\n        {\n            \"_id\": \"66cc53d50f04c831c57e396e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Einat\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T10:07:17.132Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.164Z\"\n        },\n        {\n            \"_id\": \"66cc5d6e899f99c375ddec54\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66cc5d6e899f99c375ddec54%2F1724669397695%2F1724669403034%2FSoundCloudnew_Logo_1724669403034.jpg?alt=media&token=011b6075-cb96-4e34-a1f2-9871e7a030c8\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SoundCloud & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T10:48:14.029Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.836Z\"\n        },\n        {\n            \"_id\": \"66cc8118d3ae3274daae3eec\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Brainshield\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-26T13:20:24.845Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.779Z\"\n        },\n        {\n            \"_id\": \"66cf1900a38bdd52e8ee9e3e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66620c93a9b54d8c844dab45%2F1717701979448%2F1717701983951%2Fpart_1717701983951.png?alt=media&token=464d3990-df57-47dc-a6b8-5de742c47be1\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Valmont & Juno Journey  (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T12:33:04.742Z\",\n            \"updatedAt\": \"2024-08-28T12:33:04.742Z\"\n        },\n        {\n            \"_id\": \"66cf7bc8bb811c2a3c16360c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66cf7bc8bb811c2a3c16360c%2F1724873752198%2F1724873758379%2Fdribbble_brightline_branding_logo2_1724873758379.jpg?alt=media&token=edfee2bf-0c48-4670-b3c8-c74ab5952d7a\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Brightline & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-28T19:34:32.750Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.834Z\"\n        },\n        {\n            \"_id\": \"66d02a35d06d4ca7a8d1208e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d02a35d06d4ca7a8d1208e%2F1724918350772%2F1724918353489%2Fobsidian_portfolio_thumb_500x281_1724918353489.jpg?alt=media&token=874c4933-52ed-413b-9e68-ef2ee3de8900\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Obsidian & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-08-29T07:58:45.381Z\",\n            \"updatedAt\": \"2024-08-29T08:00:55.394Z\"\n        },\n        {\n            \"_id\": \"66d5b7cc739352cf9938a9b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d5b7cc739352cf9938a9b8%2F1725282501555%2F1725282506058%2Fgray_1725282506058.jpeg?alt=media&token=e1b0d94b-0553-4ba8-9f8e-ab6d0c8e8905\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"GrayQuest & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-02T13:04:12.146Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.868Z\"\n        },\n        {\n            \"_id\": \"66d991206d347d93fe6e8947\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d991206d347d93fe6e8947%2F1725534545475%2F1725534548322%2FPanorays_HALOCK_1_1725534548322.jpg?alt=media&token=de1315ed-7c44-4fcb-8e24-2129f51f037b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Panorays & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-05T11:08:16.350Z\",\n            \"updatedAt\": \"2024-09-05T14:31:55.858Z\"\n        },\n        {\n            \"_id\": \"66d9c0e37cf2be4c791fb12a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66d9c0e37cf2be4c791fb12a%2F1725546929688%2F1725546932155%2Ftipalti_1725546932155.jpg?alt=media&token=6a994640-2535-4ae7-bfa9-29addbf112df\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Tipalti & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-05T14:32:03.686Z\",\n            \"updatedAt\": \"2024-09-05T14:53:36.576Z\"\n        },\n        {\n            \"_id\": \"66db27ae50270c2f24bdbcc5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66db27ae50270c2f24bdbcc5%2F1725638601944%2F1725638612836%2Fhopskipdrive_logo_vector_1725638612836.png?alt=media&token=7904d380-28a5-46a1-879c-0edd2f8c4eff\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"HopSkipDrive & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-06T16:02:54.411Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.912Z\"\n        },\n        {\n            \"_id\": \"66df031482ce5517c768e060\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T14:15:48.248Z\",\n            \"updatedAt\": \"2024-09-09T14:17:22.927Z\"\n        },\n        {\n            \"_id\": \"66df28548968a9f4e0c2dd46\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Signature example\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-09T16:54:44.942Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.812Z\"\n        },\n        {\n            \"_id\": \"66e008011c58d54461c6f365\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F64ff1f551a0dd20008a3e421%2F1694441343353%2F1694441346108%2FETG%20LOGO-01%20(002).png?alt=media&token=960b1eb6-f0a9-4b48-9b31-8c40ab293581\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"ETG & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-10T08:49:05.934Z\",\n            \"updatedAt\": \"2024-09-10T08:49:39.742Z\"\n        },\n        {\n            \"_id\": \"66e28b282786c2ea1dd832a5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65ef2063e20781479bc9ad43%2F1710170286389%2F1710170288953%2FLogo_Euronet_1710170288954.jpg?alt=media&token=08d9bbd3-80cc-4d41-928f-36a87bc2f94e\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Euronet\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-12T06:33:12.180Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.910Z\"\n        },\n        {\n            \"_id\": \"66e4544e157c0a1aa5be2feb\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-13T15:03:42.223Z\",\n            \"updatedAt\": \"2024-09-13T15:03:42.223Z\"\n        },\n        {\n            \"_id\": \"66e454ebaffda637cf0ea961\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66e454ebaffda637cf0ea961%2F1726240211779%2F1726240215381%2Flinklaters_logo_300x300_01_1726240215381.jpg?alt=media&token=209c184f-c25b-4f8c-a878-cd966c2f3261\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Linklaters & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-13T15:06:19.668Z\",\n            \"updatedAt\": \"2024-09-13T15:10:41.941Z\"\n        },\n        {\n            \"_id\": \"66e7ec3024d3b4d035debfe3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66e7ec3024d3b4d035debfe3%2F1726475506128%2F1726475510948%2Flocus_1726475510948.png?alt=media&token=2f4f7e22-c07d-4d49-9c39-8f243c787514\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"LocusView & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-16T08:28:32.725Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.915Z\"\n        },\n        {\n            \"_id\": \"66e93147ea28473c2b56b250\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66e93147ea28473c2b56b250%2F1726558730677%2F1726558734414%2FRGA_1726558734414.jpg?alt=media&token=6389924a-19c8-436e-9f5a-4a50e99cf854\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"RGA & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-17T07:35:35.840Z\",\n            \"updatedAt\": \"2024-09-17T07:54:25.744Z\"\n        },\n        {\n            \"_id\": \"66ea936ea30f00e87df9f9b0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F660e67c47c511e33ba03f552%2F1712220256255%2F1712220260562%2Ftibber_1712220260562.jpeg?alt=media&token=b9899410-6b28-4248-a280-d2bb3b543766\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP  for Tibber\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T08:46:38.699Z\",\n            \"updatedAt\": \"2024-09-18T08:46:38.699Z\"\n        },\n        {\n            \"_id\": \"66ea9371e25794a96d8164c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ea9371e25794a96d8164c7%2F1726649598474%2F1726649601017%2Fvishay_sq_1726649601018.jpg?alt=media&token=873624f5-8030-4e64-b60a-ff85e5258e3b\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's LXP for Vishay\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T08:46:41.110Z\",\n            \"updatedAt\": \"2025-04-29T09:00:24.572Z\"\n        },\n        {\n            \"_id\": \"66eaed7179352ce0d884aebf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66eaed7179352ce0d884aebf%2F1726672369381%2F1726672372685%2Fviant_s_1726672372685.png?alt=media&token=4d9500a8-972b-4a02-8432-befb613da84d\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Viant & Juno Journey  \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-18T15:10:41.363Z\",\n            \"updatedAt\": \"2024-09-19T11:50:02.079Z\"\n        },\n        {\n            \"_id\": \"66ebfcffc18397c71cb8ccd8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T10:29:19.496Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.448Z\"\n        },\n        {\n            \"_id\": \"66ec0c318ff83a7c31271190\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ec0c318ff83a7c31271190%2F1726745757477%2F1726745816680%2FJuno_logo_1726745816680.png?alt=media&token=fb61e2cd-9bb7-4aa8-b110-7427566b037e\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno's Journey's LXP \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T11:34:09.529Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.818Z\"\n        },\n        {\n            \"_id\": \"66ec0fef4a865d7a9077b46b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66ec0fef4a865d7a9077b46b%2F1726752080313%2F1726752083990%2Fap_1726752083990.png?alt=media&token=85c503d1-6b62-48ad-aaa3-9c4052286dc0\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"apsolut & Juno Journey   \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T11:50:07.050Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.870Z\"\n        },\n        {\n            \"_id\": \"66ec1854fa55ef191ed13d5e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-19T12:25:56.178Z\",\n            \"updatedAt\": \"2024-09-19T12:28:20.137Z\"\n        },\n        {\n            \"_id\": \"66f3223a82889f7d716ea3b8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66f3223a82889f7d716ea3b8%2F1727210155703%2F1727210159034%2FHumane_press_vertical_logo_white_1727210159035.png?alt=media&token=b8b0c697-6319-4adb-86bd-94bbd82c9724\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Humane & Juno Journey \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T20:34:02.733Z\",\n            \"updatedAt\": \"2024-09-24T20:51:20.126Z\"\n        },\n        {\n            \"_id\": \"66f3265443e675a412313d7f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F66f3265443e675a412313d7f%2F1727211145141%2F1727211148238%2FNice_1727211148238.gif?alt=media&token=d2629458-6ed0-4acb-a664-8967cc32ed58\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Nice & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-24T20:51:32.398Z\",\n            \"updatedAt\": \"2024-09-24T21:26:10.689Z\"\n        },\n        {\n            \"_id\": \"66f439bf49b981400dd0203a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65e087b66152ea6a2bbea6be%2F1709213954972%2F1709213957169%2Fbright_machines_microfactories_1709213957169.webp?alt=media&token=b0e692d3-f4b5-4a63-9f91-fe61438c3e88\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Bright Machines & Juno Journey\",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-25T16:26:39.294Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.821Z\"\n        },\n        {\n            \"_id\": \"66faf24867f3900a7b7ae82d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"signature\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-09-30T18:47:36.024Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.823Z\"\n        },\n        {\n            \"_id\": \"66fbb73c17740047bab148c4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T08:47:56.680Z\",\n            \"updatedAt\": \"2024-10-01T08:47:56.680Z\"\n        },\n        {\n            \"_id\": \"66fbd5adbaf19ce67664d5b5\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"xcv \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-01T10:57:49.058Z\",\n            \"updatedAt\": \"2024-10-01T10:58:34.791Z\"\n        },\n        {\n            \"_id\": \"6705440a904f4783a2d42876\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6705440a904f4783a2d42876%2F1728398592563%2F1728398596592%2FL_sq_1728398596593.jpg?alt=media&token=2ed608c3-8731-4dcf-87c3-0bcc7bf78baa\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"L & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-08T14:39:06.588Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.924Z\"\n        },\n        {\n            \"_id\": \"6706265cd3123128d1886ded\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65afb03d843c7241c70a4b04%2F1706022347938%2F1706022354409%2Fperion_sq_1706022354409.png?alt=media&token=c758b666-a131-40cf-9e36-a8e3471f2792\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Perion\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T06:44:44.334Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.927Z\"\n        },\n        {\n            \"_id\": \"6706379855ec796b185c0017\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T07:58:16.798Z\",\n            \"updatedAt\": \"2024-10-09T07:58:16.798Z\"\n        },\n        {\n            \"_id\": \"67063ab02ed91e780373a7ad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T08:11:28.696Z\",\n            \"updatedAt\": \"2024-10-09T08:11:28.696Z\"\n        },\n        {\n            \"_id\": \"67063e9c2ed91e780373f987\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T08:28:12.873Z\",\n            \"updatedAt\": \"2024-10-09T08:30:51.504Z\"\n        },\n        {\n            \"_id\": \"6706499602840f7533f0ea61\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T09:15:02.217Z\",\n            \"updatedAt\": \"2024-10-09T09:15:02.217Z\"\n        },\n        {\n            \"_id\": \"670654182ed91e780375dab6\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T09:59:52.894Z\",\n            \"updatedAt\": \"2024-10-09T09:59:52.894Z\"\n        },\n        {\n            \"_id\": \"67069a26f8009f7435affc36\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67069a26f8009f7435affc36%2F1728486442348%2F1728486445242%2FAVI_logo_CMYK_WhiteRule_1728486445242.svg?alt=media&token=3c0a3c80-5808-4523-b265-00a4d310de7a\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"AVI Systems & Juno Journey    \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T14:58:46.049Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.921Z\"\n        },\n        {\n            \"_id\": \"6706b13585dd5cffadac64c2\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-09T16:37:09.846Z\",\n            \"updatedAt\": \"2024-10-09T16:37:09.846Z\"\n        },\n        {\n            \"_id\": \"6707b533840b680824de31b3\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Dialectica\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T11:06:27.071Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.825Z\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707b533840b680824de31b3%2F1740072592538%2F1740072595614%2Funnamed_1740072595614.png?alt=media&token=f5c66f27-86ea-4a59-af70-818c14ff0d02\"\n        },\n        {\n            \"_id\": \"6707e47885dd5cffadb51c3f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707e47885dd5cffadb51c3f%2F1728573292759%2F1728573298372%2Fconstant_contact_1728573298372.jpg?alt=media&token=032e9ac2-55cd-4a03-94b5-4e5bbf84f8d1\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Constant Contact\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-10T14:28:08.421Z\",\n            \"updatedAt\": \"2024-10-10T15:22:14.458Z\"\n        },\n        {\n            \"_id\": \"6708f93a34530e7039744dab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6708f93a34530e7039744dab%2F1728641650067%2F1728641653090%2Fgrowe_sq_1728641653090.png?alt=media&token=2d761c09-c402-4ccb-a0a8-b033814de44c\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Growe\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-11T10:08:58.784Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.827Z\"\n        },\n        {\n            \"_id\": \"670ce9b05edff1a8701afa3c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65d74263599ea848f06c21b4%2F1708606101264%2F1708606103918%2Fappsflyer2449_1708606103919.jpg?alt=media&token=9438ecfb-cd6c-47d2-88da-27bac6d55665\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Appsflyer\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T09:51:44.869Z\",\n            \"updatedAt\": \"2024-10-14T09:51:44.869Z\"\n        },\n        {\n            \"_id\": \"670ceac95edff1a8701afc92\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/604a3de64831e2003494f6fa%2Funits%2F65d74263599ea848f06c21b4%2F1708606101264%2F1708606103918%2Fappsflyer2449_1708606103919.jpg?alt=media&token=9438ecfb-cd6c-47d2-88da-27bac6d55665\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Appsflyer\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T09:56:25.078Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.861Z\"\n        },\n        {\n            \"_id\": \"670d2b602ff6997cd574f312\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F670d2b602ff6997cd574f312%2F1728916747742%2F1728916751908%2Fclever_1728916751908.jpg?alt=media&token=ad24d9bf-88f6-47e0-9017-55af88fb33a3\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Clever Advertising \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-14T14:32:00.929Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.864Z\"\n        },\n        {\n            \"_id\": \"6717ca606f7de1baf71a2f91\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6717ca606f7de1baf71a2f91%2F1729612467665%2F1729612470499%2FStudio_Home_Eptura5_1729612470499.webp?alt=media&token=e3c256d2-2f1f-41da-b149-2dac9f1140fd\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for Eptura\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-22T15:53:04.421Z\",\n            \"updatedAt\": \"2025-04-08T14:52:31.785Z\"\n        },\n        {\n            \"_id\": \"6721168ddebb1f002d2949a9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6721168ddebb1f002d2949a9%2F1730222237104%2F1730222242201%2F9fin_1730222242201.jpg?alt=media&token=a7936798-02e0-49fd-b622-431fae72a7e6\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for 9fin\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-29T17:08:29.341Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.866Z\"\n        },\n        {\n            \"_id\": \"6723b76048237c85e009d0aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6723b76048237c85e009d0aa%2F1730394029105%2F1730394032814%2Ffavicon_1730394032814.png?alt=media&token=32da1863-de58-4283-aebd-85f12bf71639\",\n            \"standalone\": true,\n            \"creator\": \"64d3834fd8da0200090ad818\",\n            \"title\": \"Juno Journey for SMG\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-10-31T16:59:12.961Z\",\n            \"updatedAt\": \"2024-10-31T17:12:03.988Z\"\n        },\n        {\n            \"_id\": \"6729e6ac1227f7e47e2912a8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6729e6ac1227f7e47e2912a8%2F1730799669477%2F1730799672614%2Fwww_argus_1024x512_1730799672614.png?alt=media&token=66710ade-4f86-4ecf-a448-772e0abd2001\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Argus Media & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T09:34:36.980Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.839Z\"\n        },\n        {\n            \"_id\": \"672a0c3e90740b5b0be2b2f8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Salesforce CRM Full Training Tutorial For Beginners \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T12:14:54.054Z\",\n            \"updatedAt\": \"2024-11-05T12:16:21.931Z\"\n        },\n        {\n            \"_id\": \"672a0cc9500021e3613d06b5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F672a0cc9500021e3613d06b5%2F1730809280997%2F1730809286167%2F5ebc2a49a428098290267716_ezgif_com_optimize__18__1730809286167.gif?alt=media&token=72a8e6d1-e272-4769-ae59-c607e7809bc1\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"How to Create Powerful Sales Messaging\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-05T12:17:13.235Z\",\n            \"updatedAt\": \"2024-11-05T12:21:34.338Z\"\n        },\n        {\n            \"_id\": \"672b513794e21b34955c6d06\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"final step\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-06T11:21:27.644Z\",\n            \"updatedAt\": \"2024-11-06T11:21:35.178Z\"\n        },\n        {\n            \"_id\": \"67336356bb8b79af0f130736\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63ed00ab871f3e00080bc740%2F1676480643128%2F1676480643404%2Ffeedback.png?alt=media&token=3bb7091f-d40e-426c-b3b5-becf156dd3b9\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Client Onboarding Feedback Process\",\n            \"description\": \"Combine all your client feedback into a single accessible space. \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-12T14:16:54.509Z\",\n            \"updatedAt\": \"2024-11-12T14:17:47.613Z\"\n        },\n        {\n            \"_id\": \"6734c7745863a115854ba154\",\n            \"photoUrl\": \"https://unsplash.com/photos/I1Lv2yX67GI/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHw1fHxpdGFseXxlbnwwfDB8fHwxNzMxNTEyMjMzfDA\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Juno Journey Platform\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-13T15:36:20.517Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.841Z\"\n        },\n        {\n            \"_id\": \"673f1a35dd00ab50a2434cd6\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-21T11:32:05.244Z\",\n            \"updatedAt\": \"2024-11-21T11:32:39.296Z\"\n        },\n        {\n            \"_id\": \"674592a58c610d8cf5ac9bbb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-26T09:19:33.565Z\",\n            \"updatedAt\": \"2024-11-26T09:19:39.522Z\"\n        },\n        {\n            \"_id\": \"67486fba83f8d580a033b865\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67486fba83f8d580a033b865%2F1732800922717%2F1732800925493%2FArgus_URL_Logo_RGB_V1_scaled_1732800925493.jpg?alt=media&token=6258bbcb-a17a-472d-a2cd-c241003d9198\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Argus Media & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T13:27:22.369Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.843Z\"\n        },\n        {\n            \"_id\": \"674895447a3bbd2332ef2f08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67486fba83f8d580a033b865%2F1732800922717%2F1732800925493%2FArgus_URL_Logo_RGB_V1_scaled_1732800925493.jpg?alt=media&token=6258bbcb-a17a-472d-a2cd-c241003d9198\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Fabuwood & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T16:07:32.897Z\",\n            \"updatedAt\": \"2024-11-28T16:07:50.032Z\"\n        },\n        {\n            \"_id\": \"6748957c7a3bbd2332ef31c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6748957c7a3bbd2332ef31c7%2F1732814963828%2F1732814969944%2Ffabuwood_cabinetry_corp__logo_1732814969944.jpeg?alt=media&token=61d28214-ad60-4900-bef8-03ca66742f1f\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Fabuwood & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-11-28T16:08:28.667Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.845Z\"\n        },\n        {\n            \"_id\": \"674dce7b384ef40e0f78378d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F674dce7b384ef40e0f78378d%2F1733152493272%2F1733152495728%2F67408d9a83f63324004b4c76_LIghtricks_02_1733152495728.png?alt=media&token=c1bf784e-ec1f-43bf-a7dc-65e91538c703\",\n            \"standalone\": true,\n            \"creator\": \"64d36d7ed8da0200090a857b\",\n            \"title\": \"Lightricks & Juno Journey\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-02T15:12:59.465Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.847Z\"\n        },\n        {\n            \"_id\": \"675824b9bcc6914659b624a4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:23:37.287Z\",\n            \"updatedAt\": \"2024-12-10T11:23:37.287Z\"\n        },\n        {\n            \"_id\": \"67582542a2750718a871b916\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:25:54.395Z\",\n            \"updatedAt\": \"2024-12-10T11:25:54.395Z\"\n        },\n        {\n            \"_id\": \"6758288cbcc6914659b649f9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection (External)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-10T11:39:56.842Z\",\n            \"updatedAt\": \"2024-12-10T11:40:25.114Z\"\n        },\n        {\n            \"_id\": \"67597c6ad99f0f82230d5e4a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63f1c96718cdc600071bc8c4%2F1676819624289%2F1676819627942%2FBrown%20Modern%20Good%20Morning%20Banner%20Landscape%20(1).png?alt=media&token=84a960e1-b0a2-4c57-90f8-57f2260637e7\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Interviewing Guide: For Managers\",\n            \"description\": \"A guide to help you better assess new talent.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-11T11:50:02.838Z\",\n            \"updatedAt\": \"2024-12-11T11:50:02.838Z\"\n        },\n        {\n            \"_id\": \"675ab0ae8f9eef5bbdbf990e\",\n            \"photoUrl\": \"https://unsplash.com/photos/k_Am9hKISLM/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxuZXdzfGVufDB8MHx8fDE2NzY4OTg4MjQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Feature Hand-Over For All Teams\",\n            \"description\": \"Keep your teams up-to-date with the latest product updates.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-12T09:45:18.454Z\",\n            \"updatedAt\": \"2024-12-12T09:45:18.454Z\"\n        },\n        {\n            \"_id\": \"6765929c8f6cd411b69c40a1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2024-12-20T15:51:56.750Z\",\n            \"updatedAt\": \"2024-12-20T15:51:56.750Z\"\n        },\n        {\n            \"_id\": \"677d2903f40283627d08e03d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Sol's Best Practices for Discovery Calls\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T13:15:47.180Z\",\n            \"updatedAt\": \"2025-01-07T13:16:06.933Z\"\n        },\n        {\n            \"_id\": \"6788dd701f07d35cd25e7ed7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:20:32.412Z\",\n            \"updatedAt\": \"2025-01-16T10:20:32.412Z\"\n        },\n        {\n            \"_id\": \"67926e6c0816f7de14acbd43\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T16:29:32.732Z\",\n            \"updatedAt\": \"2025-01-23T16:29:32.732Z\"\n        },\n        {\n            \"_id\": \"679bbdf00e20719f7d5e8c85\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T17:59:12.678Z\",\n            \"updatedAt\": \"2025-01-30T17:59:12.678Z\"\n        },\n        {\n            \"_id\": \"67a3a7bf973d99669c433d4e\",\n            \"photoUrl\": \"https://unsplash.com/photos/iDGwopsIOI0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxzZWN1cml0eSUyMHxlbnwwfDB8fHwxNjU3MTA3MzYy\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"Laptops MDM enrollment\",\n            \"description\": \"This course covers the installation of MDM on workstations (Windows and Mac). It should be part of every user onboarding process.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T18:02:39.757Z\",\n            \"updatedAt\": \"2025-02-05T18:02:39.757Z\"\n        },\n        {\n            \"_id\": \"67ab22f6d7fc193374ffbee4\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:14:14.391Z\",\n            \"updatedAt\": \"2025-02-11T10:14:14.391Z\"\n        },\n        {\n            \"_id\": \"67ab5fc2c408fa8836571e90\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:33:38.750Z\",\n            \"updatedAt\": \"2025-02-11T14:33:38.750Z\"\n        },\n        {\n            \"_id\": \"67b7121d469ced346f6087ca\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:29:33.187Z\",\n            \"updatedAt\": \"2025-02-20T11:29:36.048Z\"\n        },\n        {\n            \"_id\": \"67b72254479c15e402dcc5d3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707b533840b680824de31b3%2F1728559173408%2F1728559176538%2Fnmq_1728559176538.jpg?alt=media&token=9da22f37-14f9-47c9-8a1f-3d101b2bfe3b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Dialectica (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T12:38:44.243Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.905Z\"\n        },\n        {\n            \"_id\": \"67b72e4c5ba51ffa2b86faf4\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Sify Technologies\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T13:29:48.565Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.899Z\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67b72e4c5ba51ffa2b86faf4%2F1740061939112%2F1740061941598%2Fsify_1740061941598.webp?alt=media&token=223c13ee-2b69-4de5-af41-12b1fed1b9fb\"\n        },\n        {\n            \"_id\": \"67b75fb3e2c1edd48a258e06\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67b75fb3e2c1edd48a258e06%2F1740070959487%2F1740070963026%2F131436_1740070963026.png?alt=media&token=f1514d2c-dc94-4503-bbc0-a0af614e371c\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Liferay\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T17:00:35.516Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.933Z\"\n        },\n        {\n            \"_id\": \"67bc706a50c08e7f7d1f4796\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67bc706a50c08e7f7d1f4796%2F1744115196967%2F1744115204146%2Ftile_Juno_Icon_1744115204146.png?alt=media&token=3b886402-d258-41c6-b84d-f0bf92a3eeab\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Sales Training - Challenger Sales\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:13:14.701Z\",\n            \"updatedAt\": \"2025-04-08T12:26:45.099Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67bc707404351d48cec51c53\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"659419cba05af00009a961e1\",\n            \"title\": \"Test course Colette\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:13:24.569Z\",\n            \"updatedAt\": \"2025-02-24T13:14:45.668Z\"\n        },\n        {\n            \"_id\": \"67c0adecc6089a7ab93e8df5\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T18:24:44.146Z\",\n            \"updatedAt\": \"2025-04-14T08:11:14.954Z\"\n        },\n        {\n            \"_id\": \"67c7270c3d89fb96fe63aa50\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"664c7b0d7c5299569b8b74eb\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:15:08.247Z\",\n            \"updatedAt\": \"2025-03-04T16:15:08.247Z\"\n        },\n        {\n            \"_id\": \"67d14f9c927c665de6269816\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T09:10:52.777Z\",\n            \"updatedAt\": \"2025-03-12T09:10:52.777Z\"\n        },\n        {\n            \"_id\": \"67d18789750b771e6762562b\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T13:09:29.678Z\",\n            \"updatedAt\": \"2025-03-12T15:25:22.906Z\"\n        },\n        {\n            \"_id\": \"67d81c06e200296dc3a53f2c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test for eran\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:56:38.484Z\",\n            \"updatedAt\": \"2025-04-22T16:24:03.276Z\"\n        },\n        {\n            \"_id\": \"67e5969049139fbe179072be\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T18:18:56.757Z\",\n            \"updatedAt\": \"2025-03-27T18:18:56.757Z\"\n        },\n        {\n            \"_id\": \"67f3f05bb3b6166988a43c28\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6252d5c741d2555c81a005f8%2F1651605554110%2FPerformance%20Review%20Questions%20.webp?alt=media&token=5ce02d48-0998-4b89-9a0a-3b55d8412312\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Performance Review Questions \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:33:47.204Z\",\n            \"updatedAt\": \"2025-04-07T15:33:47.204Z\"\n        },\n        {\n            \"_id\": \"67f4da10d2db6e8569ded230\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T08:10:56.818Z\",\n            \"updatedAt\": \"2025-04-08T08:10:56.818Z\"\n        },\n        {\n            \"_id\": \"67f538a395db8e3b8950c05e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T14:54:27.915Z\",\n            \"updatedAt\": \"2025-04-08T15:00:12.188Z\"\n        },\n        {\n            \"_id\": \"67f6db2195db8e3b89511da0\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T20:40:01.614Z\",\n            \"updatedAt\": \"2025-04-09T20:41:55.984Z\"\n        },\n        {\n            \"_id\": \"67f78db395db8e3b89512dcc\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T09:21:55.633Z\",\n            \"updatedAt\": \"2025-04-10T20:47:31.349Z\"\n        },\n        {\n            \"_id\": \"67fcbfcd297592121113dbb1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Flare test\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T07:57:01.728Z\",\n            \"updatedAt\": \"2025-04-14T07:57:01.728Z\"\n        },\n        {\n            \"_id\": \"67fcbfd0ad11f2236a560cc8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Flare test\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T07:57:04.646Z\",\n            \"updatedAt\": \"2025-04-14T08:16:28.141Z\"\n        },\n        {\n            \"_id\": \"67fcd7ab95db8e3b89516b0e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T09:38:51.037Z\",\n            \"updatedAt\": \"2025-04-14T09:40:34.001Z\"\n        },\n        {\n            \"_id\": \"67fd53dddcb2f5886154b266\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T18:28:45.826Z\",\n            \"updatedAt\": \"2025-04-14T18:30:38.476Z\"\n        },\n        {\n            \"_id\": \"6800c4d7d1097667dd5f183d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67f66d8b95db8e3b8950e406\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-17T09:07:35.619Z\",\n            \"updatedAt\": \"2025-04-17T09:12:39.667Z\"\n        },\n        {\n            \"_id\": \"680772a61b4c44bcd4034fb7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-22T10:42:46.496Z\",\n            \"updatedAt\": \"2025-04-22T10:44:57.551Z\"\n        },\n        {\n            \"_id\": \"6807c0a8a28bacd62bfd9a74\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"664c7b0d7c5299569b8b74eb\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-22T16:15:36.063Z\",\n            \"updatedAt\": \"2025-04-22T16:25:24.676Z\"\n        },\n        {\n            \"_id\": \"6808ed82ba99ffe319d0f608\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-23T13:39:14.491Z\",\n            \"updatedAt\": \"2025-04-23T13:41:31.377Z\"\n        },\n        {\n            \"_id\": \"6808f71cba99ffe319d0fae8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-23T14:20:12.906Z\",\n            \"updatedAt\": \"2025-04-23T14:25:41.344Z\"\n        },\n        {\n            \"_id\": \"680a853b0a7be85dd76c0bb9\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-24T18:38:51.801Z\",\n            \"updatedAt\": \"2025-04-24T18:44:25.538Z\"\n        },\n        {\n            \"_id\": \"68111ba91dea8086c7baecd1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T18:34:17.861Z\",\n            \"updatedAt\": \"2025-04-29T18:38:38.875Z\"\n        }\n    ]\n}"},{"id":"47735556-2073-4653-b7e3-ffdf58d7032f","name":"List Units - created after date","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"createdAt\": {\n            \"from\": \"2025-01-01\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/units/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"1fae4-yzUsc6CvYvcenMoXS12StDOV7xs\""},{"key":"vary","value":"Accept-Encoding"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 30 Apr 2025 09:58:10 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 304,\n    \"data\": [\n        {\n            \"_id\": \"6811e467e57ff59f88cd7cea\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-30T08:50:47.357Z\",\n            \"updatedAt\": \"2025-04-30T09:20:15.021Z\"\n        },\n        {\n            \"_id\": \"6811e467e57ff59f88cd7cf8\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-30T08:50:47.457Z\",\n            \"updatedAt\": \"2025-04-30T09:20:15.021Z\"\n        },\n        {\n            \"_id\": \"68111ba91dea8086c7baecd1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T18:34:17.861Z\",\n            \"updatedAt\": \"2025-04-29T18:38:38.875Z\"\n        },\n        {\n            \"_id\": \"68111708e57ff59f88cd7274\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T18:14:32.908Z\",\n            \"updatedAt\": \"2025-04-29T18:14:32.908Z\"\n        },\n        {\n            \"_id\": \"6810dc631dea8086c7bad728\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-29T14:04:19.837Z\",\n            \"updatedAt\": \"2025-04-29T14:09:10.375Z\"\n        },\n        {\n            \"_id\": \"680fdf5acf0aae2f8c57f1d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-28T20:04:42.627Z\",\n            \"updatedAt\": \"2025-04-28T20:05:47.410Z\"\n        },\n        {\n            \"_id\": \"680fdedbcf0aae2f8c57f10e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-28T20:02:35.319Z\",\n            \"updatedAt\": \"2025-04-28T20:03:24.554Z\"\n        },\n        {\n            \"_id\": \"680a853b0a7be85dd76c0bb9\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-24T18:38:51.801Z\",\n            \"updatedAt\": \"2025-04-24T18:44:25.538Z\"\n        },\n        {\n            \"_id\": \"6808f71cba99ffe319d0fae8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-23T14:20:12.906Z\",\n            \"updatedAt\": \"2025-04-23T14:25:41.344Z\"\n        },\n        {\n            \"_id\": \"6808ed82ba99ffe319d0f608\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-23T13:39:14.491Z\",\n            \"updatedAt\": \"2025-04-23T13:41:31.377Z\"\n        },\n        {\n            \"_id\": \"67adbd188722d76772ad22fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67adbd188722d76772ad22fa%2F1744115299512%2F1744115303130%2Ftile_Juno_Icon_1744115303130.png?alt=media&token=60c6cf4d-7876-481d-885b-a07aab6df9d2\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"New Hire Orientation\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:36:24.683Z\",\n            \"updatedAt\": \"2025-04-22T16:37:08.044Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"6807c0a8a28bacd62bfd9a74\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"664c7b0d7c5299569b8b74eb\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-22T16:15:36.063Z\",\n            \"updatedAt\": \"2025-04-22T16:25:24.676Z\"\n        },\n        {\n            \"_id\": \"67d81c06e200296dc3a53f2c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test for eran\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:56:38.484Z\",\n            \"updatedAt\": \"2025-04-22T16:24:03.276Z\"\n        },\n        {\n            \"_id\": \"680772a61b4c44bcd4034fb7\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-22T10:42:46.496Z\",\n            \"updatedAt\": \"2025-04-22T10:44:57.551Z\"\n        },\n        {\n            \"_id\": \"6806a1b6945f078b9481bca3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6240581fbe21116a132fa5f1%2F1652008868551%2FCapture%20d%E2%80%99e%CC%81cran%202022-05-08%20a%CC%80%2012.23.18.png?alt=media&token=27aa4abf-e6c4-422c-8109-1f0ac7b46775\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Manager Toolkit\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:51:19.649Z\",\n            \"updatedAt\": \"2025-04-21T19:51:19.649Z\"\n        },\n        {\n            \"_id\": \"68069d84d8a5d3c8f9a8fe5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:33:25.292Z\",\n            \"updatedAt\": \"2025-04-21T19:40:48.075Z\"\n        },\n        {\n            \"_id\": \"68069ccdd8a5d3c8f9a8fc59\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:30:22.050Z\",\n            \"updatedAt\": \"2025-04-21T19:30:22.050Z\"\n        },\n        {\n            \"_id\": \"68069b11945f078b9481b8a7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-10.jpg?alt=media&token=2f77c06e-bab8-4260-b3d8-d55a57ed5a4c\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-21T19:22:57.459Z\",\n            \"updatedAt\": \"2025-04-21T19:22:57.459Z\"\n        },\n        {\n            \"_id\": \"68015ee325628994ed522e97\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-17T20:04:51.887Z\",\n            \"updatedAt\": \"2025-04-17T20:04:51.887Z\"\n        },\n        {\n            \"_id\": \"6800c4d7d1097667dd5f183d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67f66d8b95db8e3b8950e406\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-17T09:07:35.619Z\",\n            \"updatedAt\": \"2025-04-17T09:12:39.667Z\"\n        },\n        {\n            \"_id\": \"67fd53dddcb2f5886154b266\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T18:28:45.826Z\",\n            \"updatedAt\": \"2025-04-14T18:30:38.476Z\"\n        },\n        {\n            \"_id\": \"67fcd7ab95db8e3b89516b0e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T09:38:51.037Z\",\n            \"updatedAt\": \"2025-04-14T09:40:34.001Z\"\n        },\n        {\n            \"_id\": \"67fcbfd0ad11f2236a560cc8\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Flare test\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T07:57:04.646Z\",\n            \"updatedAt\": \"2025-04-14T08:16:28.141Z\"\n        },\n        {\n            \"_id\": \"67c0adecc6089a7ab93e8df5\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T18:24:44.146Z\",\n            \"updatedAt\": \"2025-04-14T08:11:14.954Z\"\n        },\n        {\n            \"_id\": \"67fcbfcd297592121113dbb1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Flare test\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T07:57:01.728Z\",\n            \"updatedAt\": \"2025-04-14T07:57:01.728Z\"\n        },\n        {\n            \"_id\": \"67fc478a95db8e3b89516098\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-8.jpg?alt=media&token=12bff025-300f-408f-8290-559e4bcfdaf0\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Blog Post\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-13T23:23:54.624Z\",\n            \"updatedAt\": \"2025-04-13T23:40:15.112Z\"\n        },\n        {\n            \"_id\": \"67f78db395db8e3b89512dcc\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T09:21:55.633Z\",\n            \"updatedAt\": \"2025-04-10T20:47:31.349Z\"\n        },\n        {\n            \"_id\": \"67f7e34ec263d6dc37eeeded\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T15:27:10.832Z\",\n            \"updatedAt\": \"2025-04-10T15:27:10.832Z\"\n        },\n        {\n            \"_id\": \"67f7adb5c263d6dc37eed50e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-8.jpg?alt=media&token=ecfb6121-c7c7-4e7c-86cb-402c5fa14515\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Quiz Test for Novidea\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T11:38:29.693Z\",\n            \"updatedAt\": \"2025-04-10T11:40:28.515Z\"\n        },\n        {\n            \"_id\": \"67f787ec95db8e3b89512b0d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2013-3.jpg?alt=media&token=f650b02e-a104-49c2-b135-e49a2a1675b3\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-10T08:57:16.617Z\",\n            \"updatedAt\": \"2025-04-10T08:57:16.617Z\"\n        },\n        {\n            \"_id\": \"67f6db2195db8e3b89511da0\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T20:40:01.614Z\",\n            \"updatedAt\": \"2025-04-09T20:41:55.984Z\"\n        },\n        {\n            \"_id\": \"67f6c9d795db8e3b89511c5e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"John's into to hydraulics\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T19:26:15.346Z\",\n            \"updatedAt\": \"2025-04-09T19:26:15.789Z\"\n        },\n        {\n            \"_id\": \"67f6ab9295db8e3b89511344\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-09T17:17:06.486Z\",\n            \"updatedAt\": \"2025-04-09T17:17:06.486Z\"\n        },\n        {\n            \"_id\": \"67f56630c263d6dc37ee6732\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T18:08:48.457Z\",\n            \"updatedAt\": \"2025-04-08T18:08:48.457Z\"\n        },\n        {\n            \"_id\": \"67f5662f95db8e3b8950cfb8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T18:08:48.329Z\",\n            \"updatedAt\": \"2025-04-08T18:08:48.329Z\"\n        },\n        {\n            \"_id\": \"67f538a395db8e3b8950c05e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T14:54:27.915Z\",\n            \"updatedAt\": \"2025-04-08T15:00:12.188Z\"\n        },\n        {\n            \"_id\": \"67b75fb3e2c1edd48a258e06\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67b75fb3e2c1edd48a258e06%2F1740070959487%2F1740070963026%2F131436_1740070963026.png?alt=media&token=f1514d2c-dc94-4503-bbc0-a0af614e371c\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Liferay\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T17:00:35.516Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.933Z\"\n        },\n        {\n            \"_id\": \"67d1f8f31b688101276b8d1c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T21:13:23.294Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.907Z\"\n        },\n        {\n            \"_id\": \"67b72254479c15e402dcc5d3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F6707b533840b680824de31b3%2F1728559173408%2F1728559176538%2Fnmq_1728559176538.jpg?alt=media&token=9da22f37-14f9-47c9-8a1f-3d101b2bfe3b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Dialectica (Copy)\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T12:38:44.243Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.905Z\"\n        },\n        {\n            \"_id\": \"67b72e4c5ba51ffa2b86faf4\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Juno Journey for Sify Technologies\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T13:29:48.565Z\",\n            \"updatedAt\": \"2025-04-08T14:52:30.899Z\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67b72e4c5ba51ffa2b86faf4%2F1740061939112%2F1740061941598%2Fsify_1740061941598.webp?alt=media&token=223c13ee-2b69-4de5-af41-12b1fed1b9fb\"\n        },\n        {\n            \"_id\": \"67bc706a50c08e7f7d1f4796\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/64ae8d32cb525e00095e8b71%2Funits%2F67bc706a50c08e7f7d1f4796%2F1744115196967%2F1744115204146%2Ftile_Juno_Icon_1744115204146.png?alt=media&token=3b886402-d258-41c6-b84d-f0bf92a3eeab\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Sales Training - Challenger Sales\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:13:14.701Z\",\n            \"updatedAt\": \"2025-04-08T12:26:45.099Z\",\n            \"catalog\": 2\n        },\n        {\n            \"_id\": \"67f4da10d2db6e8569ded230\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T08:10:56.818Z\",\n            \"updatedAt\": \"2025-04-08T08:10:56.818Z\"\n        },\n        {\n            \"_id\": \"67f3f05bb3b6166988a43c28\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F6252d5c741d2555c81a005f8%2F1651605554110%2FPerformance%20Review%20Questions%20.webp?alt=media&token=5ce02d48-0998-4b89-9a0a-3b55d8412312\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Performance Review Questions \",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:33:47.204Z\",\n            \"updatedAt\": \"2025-04-07T15:33:47.204Z\"\n        },\n        {\n            \"_id\": \"67f3eff39140a87d38a53bda\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:32:04.039Z\",\n            \"updatedAt\": \"2025-04-07T15:32:04.039Z\"\n        },\n        {\n            \"_id\": \"67f3ef3d054a504c9fe0da5f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-07T15:29:02.321Z\",\n            \"updatedAt\": \"2025-04-07T15:29:02.321Z\"\n        },\n        {\n            \"_id\": \"67ed1ef190e56ef2dfd710c5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-2.jpg?alt=media&token=09eed7ef-42e5-4f1f-8bad-060878e440ae\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-02T11:26:41.124Z\",\n            \"updatedAt\": \"2025-04-02T11:26:41.124Z\"\n        },\n        {\n            \"_id\": \"67eac21d43e1c23416cdca8b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-31T16:26:06.132Z\",\n            \"updatedAt\": \"2025-03-31T16:26:06.132Z\"\n        },\n        {\n            \"_id\": \"67ea9d6974b688bf5d946fe2\",\n            \"photoUrl\": \"https://unsplash.com/photos/s9CC2SKySJM/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8c2tpbGxzfGVufDB8MHx8fDE3MDcxMjQzNzZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Learning Requirements Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-31T13:49:29.748Z\",\n            \"updatedAt\": \"2025-03-31T13:49:29.748Z\"\n        },\n        {\n            \"_id\": \"67e99387667abbc79875a806\",\n            \"photoUrl\": \"https://www.google.com/s2/favicons?domain=https://www.disco.co/blog/ai-tools-for-career-development-programs&sz=128\",\n            \"standalone\": true,\n            \"creator\": \"67e13240f6e84c50c99cd4ba\",\n            \"title\": \"What are AI Tools for Career Development Programs in 2025?\",\n            \"description\": \"Wondering how artificial intelligence can transform your career development program? AI tools for career development programs provide personalized guidance, skill assessments, interview practice, and job matching.\",\n            \"type\": \"article\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-30T18:55:03.074Z\",\n            \"updatedAt\": \"2025-03-30T18:56:05.158Z\"\n        },\n        {\n            \"_id\": \"67e596a166f894e5bb475563\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T18:19:13.952Z\",\n            \"updatedAt\": \"2025-03-27T18:19:13.952Z\"\n        },\n        {\n            \"_id\": \"67e5969049139fbe179072be\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T18:18:56.757Z\",\n            \"updatedAt\": \"2025-03-27T18:18:56.757Z\"\n        },\n        {\n            \"_id\": \"67e5314f25e4bd22612ac96c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-27T11:06:55.424Z\",\n            \"updatedAt\": \"2025-03-27T11:07:06.472Z\"\n        },\n        {\n            \"_id\": \"67e45f5c1e81d82f38629922\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T20:11:08.719Z\",\n            \"updatedAt\": \"2025-03-26T20:11:08.719Z\"\n        },\n        {\n            \"_id\": \"67e41a23909ae2b092084027\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-9.jpg?alt=media&token=da1bdd39-2b6f-44dd-a304-7cd905fc7567\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Behavox AI Security \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T15:15:47.731Z\",\n            \"updatedAt\": \"2025-03-26T15:16:28.091Z\"\n        },\n        {\n            \"_id\": \"67e40edf97d8cecef65bc375\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T14:27:43.544Z\",\n            \"updatedAt\": \"2025-03-26T14:27:43.544Z\"\n        },\n        {\n            \"_id\": \"67e3e93e2224a439ee5e9ada\",\n            \"photoUrl\": \"https://unsplash.com/photos/s9CC2SKySJM/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxMXx8c2tpbGxzfGVufDB8MHx8fDE3MDcxMjQzNzZ8MA\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Learning Requirements Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-26T11:47:10.894Z\",\n            \"updatedAt\": \"2025-03-26T11:47:10.894Z\"\n        },\n        {\n            \"_id\": \"67e2a60480c32215c6fc5c73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-25T12:48:05.534Z\",\n            \"updatedAt\": \"2025-03-25T12:48:05.534Z\"\n        },\n        {\n            \"_id\": \"67e2a49fe6373efb88402664\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-25T12:42:08.298Z\",\n            \"updatedAt\": \"2025-03-25T12:42:08.298Z\"\n        },\n        {\n            \"_id\": \"67e19235d0d69d57a052dca2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:11:18.407Z\",\n            \"updatedAt\": \"2025-03-24T17:11:18.407Z\"\n        },\n        {\n            \"_id\": \"67e191d68b5139358329cc23\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F62528c76e848e1b8782934b4%2F1657199375919%2F1657199379482%2Femployee%20handbook%20%201.png?alt=media&token=4109fc30-e7f4-40d5-92e9-aa544c97d82b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Handbook\",\n            \"description\": \"A great resource for answering common work-related questions.Announcements, policies, and more.\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:09:43.541Z\",\n            \"updatedAt\": \"2025-03-24T17:09:43.541Z\"\n        },\n        {\n            \"_id\": \"67e19142e30e15eb5680dc6e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:07:15.975Z\",\n            \"updatedAt\": \"2025-03-24T17:07:15.975Z\"\n        },\n        {\n            \"_id\": \"67e190c60c102768a292887c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-24T17:05:10.833Z\",\n            \"updatedAt\": \"2025-03-24T17:05:10.833Z\"\n        },\n        {\n            \"_id\": \"67dd3355a543f0ee418fbc55\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-21T09:37:25.995Z\",\n            \"updatedAt\": \"2025-03-21T09:37:25.995Z\"\n        },\n        {\n            \"_id\": \"67dc37d00b04bde3c63ec1f3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T15:44:17.152Z\",\n            \"updatedAt\": \"2025-03-20T15:44:39.264Z\"\n        },\n        {\n            \"_id\": \"67dc356c0b04bde3c63eb160\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T15:34:04.860Z\",\n            \"updatedAt\": \"2025-03-20T15:34:04.860Z\"\n        },\n        {\n            \"_id\": \"67dc343639645341e6de8e76\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T15:28:54.827Z\",\n            \"updatedAt\": \"2025-03-20T15:28:54.827Z\"\n        },\n        {\n            \"_id\": \"67dc131f806752ce972dc307\",\n            \"photoUrl\": \"https://unsplash.com/photos/Px3Jjwi0mak/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw3fHxwbGFudCUyMGdyb3dpbmd8ZW58MHwwfHx8MTY3Mzc3Njg3OQ\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Performance Review Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T13:07:43.245Z\",\n            \"updatedAt\": \"2025-03-20T13:14:40.326Z\"\n        },\n        {\n            \"_id\": \"67dc1013b6fb820f53833a12\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63ccf6ac59595a0007ed7a5f%2F1675176954706%2F1675176954976%2Fsurvey.png?alt=media&token=fb504640-fc73-4097-ac43-70a930d90982\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Employee Effectiveness Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T12:54:44.001Z\",\n            \"updatedAt\": \"2025-03-20T13:06:57.890Z\"\n        },\n        {\n            \"_id\": \"67dbef18f165cb9971d14c6c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-5.jpg?alt=media&token=a31a4bbd-c3c3-444a-aeeb-844da9f23cc5\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Webinar series\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T10:34:00.605Z\",\n            \"updatedAt\": \"2025-03-20T10:34:01.006Z\"\n        },\n        {\n            \"_id\": \"67dbecf67c2a67d203cd62ae\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-20T10:24:54.979Z\",\n            \"updatedAt\": \"2025-03-20T10:24:54.979Z\"\n        },\n        {\n            \"_id\": \"67da8c77317603bd49ed7342\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-3.jpg?alt=media&token=022cc7ce-2f1a-45db-bd99-fc10e1559dc6\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"AppsFlyer - R&D Workshop \",\n            \"type\": \"workshop\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-19T09:20:55.667Z\",\n            \"updatedAt\": \"2025-03-19T09:21:21.822Z\"\n        },\n        {\n            \"_id\": \"67d9dd5f9f44ee7f94d365fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-9.jpg?alt=media&token=bf6adf00-d3fd-4e50-b2b9-da3d60770443\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-18T20:53:51.775Z\",\n            \"updatedAt\": \"2025-03-18T20:53:52.264Z\"\n        },\n        {\n            \"_id\": \"67d830c8f4e9bb8cc4fb67c2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T14:25:12.668Z\",\n            \"updatedAt\": \"2025-03-17T14:25:12.668Z\"\n        },\n        {\n            \"_id\": \"67d81242459e5ac59062b6d4\",\n            \"photoUrl\": \"https://unsplash.com/photos/pypeCEaJeZY/download?ixid=M3wyNTQ4MDN8MHwxfHNlYXJjaHwxM3x8c3VydmV5fGVufDB8MHx8fDE3NDIyMTM3NzN8MA\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Sales Discovery Follow Up Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:14:58.852Z\",\n            \"updatedAt\": \"2025-03-17T12:16:45.699Z\"\n        },\n        {\n            \"_id\": \"67d2bc605fbac1d2860705e1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-4.jpg?alt=media&token=d5531628-edfc-4e9c-bb27-0d4cb3e92743\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T11:07:12.101Z\",\n            \"updatedAt\": \"2025-03-13T11:08:10.199Z\"\n        },\n        {\n            \"_id\": \"67d2bb3d4147088faa488594\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T11:02:21.870Z\",\n            \"updatedAt\": \"2025-03-13T11:02:21.870Z\"\n        },\n        {\n            \"_id\": \"67d2bb0e5fbac1d28606dfec\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T11:01:34.945Z\",\n            \"updatedAt\": \"2025-03-13T11:01:49.211Z\"\n        },\n        {\n            \"_id\": \"67d2a784ca707794870d9a4d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-13T09:38:13.105Z\",\n            \"updatedAt\": \"2025-03-13T09:38:13.105Z\"\n        },\n        {\n            \"_id\": \"67d18789750b771e6762562b\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T13:09:29.678Z\",\n            \"updatedAt\": \"2025-03-12T15:25:22.906Z\"\n        },\n        {\n            \"_id\": \"67d1a52efde00e116f44f18d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T15:15:59.356Z\",\n            \"updatedAt\": \"2025-03-12T15:15:59.356Z\"\n        },\n        {\n            \"_id\": \"67d17c5589fa21c5eb551a4a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T12:21:58.288Z\",\n            \"updatedAt\": \"2025-03-12T12:21:58.288Z\"\n        },\n        {\n            \"_id\": \"67d17c5ba0fa7ac6c59b17a2\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T12:21:48.454Z\",\n            \"updatedAt\": \"2025-03-12T12:21:48.454Z\"\n        },\n        {\n            \"_id\": \"67d14f9c927c665de6269816\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-12T09:10:52.777Z\",\n            \"updatedAt\": \"2025-03-12T09:10:52.777Z\"\n        },\n        {\n            \"_id\": \"67d09cde570b63766bba3597\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-11T20:28:14.314Z\",\n            \"updatedAt\": \"2025-03-11T20:28:33.981Z\"\n        },\n        {\n            \"_id\": \"67d09a22582fcc32001660c3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-11T20:16:35.206Z\",\n            \"updatedAt\": \"2025-03-11T20:16:35.206Z\"\n        },\n        {\n            \"_id\": \"67d0484e06691db37265a76c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-11T14:27:27.347Z\",\n            \"updatedAt\": \"2025-03-11T14:27:27.347Z\"\n        },\n        {\n            \"_id\": \"67cf311e7be58f8e0b644d67\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T18:36:15.320Z\",\n            \"updatedAt\": \"2025-03-10T18:36:15.320Z\"\n        },\n        {\n            \"_id\": \"67cf2add989a9109bd902c9a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T18:09:33.511Z\",\n            \"updatedAt\": \"2025-03-10T18:09:33.511Z\"\n        },\n        {\n            \"_id\": \"67cf14c28f6c7328b73c97e3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T16:35:14.502Z\",\n            \"updatedAt\": \"2025-03-10T16:35:14.502Z\"\n        },\n        {\n            \"_id\": \"67cef8ef3261b74b00ab56b5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T14:36:31.973Z\",\n            \"updatedAt\": \"2025-03-10T14:36:31.973Z\"\n        },\n        {\n            \"_id\": \"67cef8ee3261b74b00ab55ab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T14:36:31.653Z\",\n            \"updatedAt\": \"2025-03-10T14:36:31.653Z\"\n        },\n        {\n            \"_id\": \"67cee4f754986ca537193bfa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T13:11:20.069Z\",\n            \"updatedAt\": \"2025-03-10T13:11:20.069Z\"\n        },\n        {\n            \"_id\": \"67cee4f312aed52f0c6a58f1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-10T13:11:15.414Z\",\n            \"updatedAt\": \"2025-03-10T13:11:15.414Z\"\n        },\n        {\n            \"_id\": \"67cb23b1be113460f4a6a02a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-07T16:49:53.656Z\",\n            \"updatedAt\": \"2025-03-07T16:49:53.656Z\"\n        },\n        {\n            \"_id\": \"67cb0a5abeb4357692ebe146\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-07T15:01:47.278Z\",\n            \"updatedAt\": \"2025-03-07T15:01:47.278Z\"\n        },\n        {\n            \"_id\": \"67c9c9db5864373f49c1f7ea\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T16:14:19.985Z\",\n            \"updatedAt\": \"2025-03-06T16:14:19.985Z\"\n        },\n        {\n            \"_id\": \"67c9be1b7e158e08d9eda50e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T15:24:11.806Z\",\n            \"updatedAt\": \"2025-03-06T15:24:11.806Z\"\n        },\n        {\n            \"_id\": \"67c97738bfabdce22ab0da36\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T10:21:44.976Z\",\n            \"updatedAt\": \"2025-03-06T10:21:44.976Z\"\n        },\n        {\n            \"_id\": \"67c975c6566a7fcb4c3c85f8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-06T10:15:34.757Z\",\n            \"updatedAt\": \"2025-03-06T10:15:34.757Z\"\n        },\n        {\n            \"_id\": \"67c8a7bd6c2d8b617628acd5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-05T19:36:30.449Z\",\n            \"updatedAt\": \"2025-03-05T19:36:30.449Z\"\n        },\n        {\n            \"_id\": \"67c87c8f7456c229ee5d308c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-05T16:32:16.139Z\",\n            \"updatedAt\": \"2025-03-05T16:32:16.139Z\"\n        },\n        {\n            \"_id\": \"67c8337ab0720292f9ea93d0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-05T11:20:26.717Z\",\n            \"updatedAt\": \"2025-03-05T11:20:26.717Z\"\n        },\n        {\n            \"_id\": \"67c73b1683f2693f67b81869\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T17:40:38.999Z\",\n            \"updatedAt\": \"2025-03-04T17:40:38.999Z\"\n        },\n        {\n            \"_id\": \"67c72c66fe02d4293f36b8fe\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-9.jpg?alt=media&token=da1bdd39-2b6f-44dd-a304-7cd905fc7567\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:37:58.527Z\",\n            \"updatedAt\": \"2025-03-04T16:38:09.693Z\"\n        },\n        {\n            \"_id\": \"67c7294574e8cad17b714def\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:24:38.200Z\",\n            \"updatedAt\": \"2025-03-04T16:24:38.200Z\"\n        },\n        {\n            \"_id\": \"67c7270c3d89fb96fe63aa50\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"664c7b0d7c5299569b8b74eb\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T16:15:08.247Z\",\n            \"updatedAt\": \"2025-03-04T16:15:08.247Z\"\n        },\n        {\n            \"_id\": \"67c6d221cfcd12e97e9944d3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-04T10:12:49.913Z\",\n            \"updatedAt\": \"2025-03-04T10:12:49.913Z\"\n        },\n        {\n            \"_id\": \"67c61be76f82876c7ada4d9b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T21:15:20.283Z\",\n            \"updatedAt\": \"2025-03-03T21:15:20.283Z\"\n        },\n        {\n            \"_id\": \"67c602149f3666a181ffa69e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T19:25:08.814Z\",\n            \"updatedAt\": \"2025-03-03T19:25:08.814Z\"\n        },\n        {\n            \"_id\": \"67c5e3da3b5508c825da256d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T17:16:10.886Z\",\n            \"updatedAt\": \"2025-03-03T17:16:10.886Z\"\n        },\n        {\n            \"_id\": \"67c5d8732ed75dbc148f222f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T16:27:31.886Z\",\n            \"updatedAt\": \"2025-03-03T16:27:31.886Z\"\n        },\n        {\n            \"_id\": \"67c5b6f721443a19b2f41c01\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-03T14:04:40.210Z\",\n            \"updatedAt\": \"2025-03-03T14:04:40.210Z\"\n        },\n        {\n            \"_id\": \"67c1d6c341f8ea70f7cc8600\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-28T15:31:16.488Z\",\n            \"updatedAt\": \"2025-02-28T15:31:16.488Z\"\n        },\n        {\n            \"_id\": \"67c17d8bcf5d901a766bb5f1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-28T09:10:37.524Z\",\n            \"updatedAt\": \"2025-02-28T09:10:37.524Z\"\n        },\n        {\n            \"_id\": \"67c0ba5144b2794b18314bb5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T19:17:37.802Z\",\n            \"updatedAt\": \"2025-02-27T19:17:37.802Z\"\n        },\n        {\n            \"_id\": \"67c0a619787dc75f72e24632\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T17:51:22.428Z\",\n            \"updatedAt\": \"2025-02-27T17:51:22.428Z\"\n        },\n        {\n            \"_id\": \"67c086941453ad8eb49ebb4c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T15:36:52.531Z\",\n            \"updatedAt\": \"2025-02-27T15:36:52.531Z\"\n        },\n        {\n            \"_id\": \"67c0670da2852d020d688514\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T13:22:22.510Z\",\n            \"updatedAt\": \"2025-02-27T13:22:22.510Z\"\n        },\n        {\n            \"_id\": \"67c04ec4bbaa1ac9d40d412b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T11:38:45.320Z\",\n            \"updatedAt\": \"2025-02-27T11:38:45.320Z\"\n        },\n        {\n            \"_id\": \"67c04e990e939a3b9a8f0d13\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T11:38:01.856Z\",\n            \"updatedAt\": \"2025-02-27T11:38:01.856Z\"\n        },\n        {\n            \"_id\": \"67c04d85fce40b7ca942d61e\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T11:33:25.503Z\",\n            \"updatedAt\": \"2025-02-27T11:33:25.503Z\"\n        },\n        {\n            \"_id\": \"67c03ecdd56a099cf92e87fa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T10:30:37.984Z\",\n            \"updatedAt\": \"2025-02-27T10:30:52.429Z\"\n        },\n        {\n            \"_id\": \"67c03e7bd56a099cf92e84d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626e94b4a167f1aad15a1554%2F1657198879608%2F1657198884322%2Fone%20on%20one%20meeting%20guidelines.png?alt=media&token=7edfe4d8-f03d-4949-8222-5c363e692500\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"1:1 Meeting Guidelines\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-27T10:29:15.693Z\",\n            \"updatedAt\": \"2025-02-27T10:30:08.686Z\"\n        },\n        {\n            \"_id\": \"67bf768aab80d0f2abe5e269\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T20:16:10.882Z\",\n            \"updatedAt\": \"2025-02-26T20:16:10.882Z\"\n        },\n        {\n            \"_id\": \"67bf3e0df2a505ebcf05cbc1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T16:15:09.581Z\",\n            \"updatedAt\": \"2025-02-26T16:15:09.581Z\"\n        },\n        {\n            \"_id\": \"67bf3c622d6aeeba09d68d08\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T16:08:03.391Z\",\n            \"updatedAt\": \"2025-02-26T16:08:03.391Z\"\n        },\n        {\n            \"_id\": \"67bf2f51e0eb0e6635ad49fc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Leadership Tala\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T15:12:17.141Z\",\n            \"updatedAt\": \"2025-02-26T15:13:53.639Z\"\n        },\n        {\n            \"_id\": \"67bf2abe535c8df23feed7d7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T14:52:47.507Z\",\n            \"updatedAt\": \"2025-02-26T14:52:47.507Z\"\n        },\n        {\n            \"_id\": \"67bf0d50e2fa9a48a43b55f9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:47:12.918Z\",\n            \"updatedAt\": \"2025-02-26T12:47:37.892Z\"\n        },\n        {\n            \"_id\": \"67bf02f971a609dc7fda44e1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:03:06.583Z\",\n            \"updatedAt\": \"2025-02-26T12:03:06.583Z\"\n        },\n        {\n            \"_id\": \"67bf02f0c5743a99b0f73d22\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011.jpg?alt=media&token=f61ab96f-d53a-4b53-a10c-98fd1bcafded\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:02:56.599Z\",\n            \"updatedAt\": \"2025-02-26T12:02:56.599Z\"\n        },\n        {\n            \"_id\": \"67bf02e1bc3d1485e409cbde\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-10.jpg?alt=media&token=e7641a47-e567-428a-9943-3158788bf034\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-26T12:02:41.060Z\",\n            \"updatedAt\": \"2025-02-26T12:02:41.060Z\"\n        },\n        {\n            \"_id\": \"67bdc24a29450879c1053d73\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-25T13:14:51.037Z\",\n            \"updatedAt\": \"2025-02-25T13:14:51.037Z\"\n        },\n        {\n            \"_id\": \"67bdb5177bbdc69577fa3122\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-25T12:18:31.960Z\",\n            \"updatedAt\": \"2025-02-25T12:18:31.960Z\"\n        },\n        {\n            \"_id\": \"67bdb4980e7fa63b2ce3b196\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-25T12:16:25.030Z\",\n            \"updatedAt\": \"2025-02-25T12:16:25.030Z\"\n        },\n        {\n            \"_id\": \"67bca83b11c11d4fa486fc4d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T17:11:24.485Z\",\n            \"updatedAt\": \"2025-02-24T17:11:24.485Z\"\n        },\n        {\n            \"_id\": \"67bc762707cb33a1c699ca6f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-10.jpg?alt=media&token=2f77c06e-bab8-4260-b3d8-d55a57ed5a4c\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:37:43.224Z\",\n            \"updatedAt\": \"2025-02-24T13:37:43.224Z\"\n        },\n        {\n            \"_id\": \"67bc73c8bacfdd71e5445916\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"XYZ \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:27:36.712Z\",\n            \"updatedAt\": \"2025-02-24T13:32:22.369Z\"\n        },\n        {\n            \"_id\": \"67bc707404351d48cec51c53\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"659419cba05af00009a961e1\",\n            \"title\": \"Test course Colette\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T13:13:24.569Z\",\n            \"updatedAt\": \"2025-02-24T13:14:45.668Z\"\n        },\n        {\n            \"_id\": \"67bc4769b2c86cfe077d83c1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-24T10:18:18.077Z\",\n            \"updatedAt\": \"2025-02-24T10:18:18.077Z\"\n        },\n        {\n            \"_id\": \"67b88e689635cf33b2bd4630\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T14:32:09.343Z\",\n            \"updatedAt\": \"2025-02-21T14:32:09.343Z\"\n        },\n        {\n            \"_id\": \"67b8862ec13c85c270299cba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T13:57:03.433Z\",\n            \"updatedAt\": \"2025-02-21T13:57:03.433Z\"\n        },\n        {\n            \"_id\": \"67b8712ad2ee815e51feec6e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T12:27:22.826Z\",\n            \"updatedAt\": \"2025-02-21T12:28:43.605Z\"\n        },\n        {\n            \"_id\": \"67b858c2c8ec7b9d78cb63ac\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T10:43:15.242Z\",\n            \"updatedAt\": \"2025-02-21T10:43:15.242Z\"\n        },\n        {\n            \"_id\": \"67b83e4bbc3e49def7594b05\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-21T08:50:20.320Z\",\n            \"updatedAt\": \"2025-02-21T08:50:20.320Z\"\n        },\n        {\n            \"_id\": \"67b764a82e266fae8efc9f3b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T17:21:44.716Z\",\n            \"updatedAt\": \"2025-02-20T17:21:44.716Z\"\n        },\n        {\n            \"_id\": \"67b757cccc3322b947c54b3c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T16:26:53.485Z\",\n            \"updatedAt\": \"2025-02-20T16:26:53.485Z\"\n        },\n        {\n            \"_id\": \"67b7122a1a0e386c2691eb1c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:29:46.319Z\",\n            \"updatedAt\": \"2025-02-20T11:29:46.319Z\"\n        },\n        {\n            \"_id\": \"67b7121d469ced346f6087ca\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:29:33.187Z\",\n            \"updatedAt\": \"2025-02-20T11:29:36.048Z\"\n        },\n        {\n            \"_id\": \"67b70faea0b242b2071d0c2b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T11:19:11.321Z\",\n            \"updatedAt\": \"2025-02-20T11:19:11.321Z\"\n        },\n        {\n            \"_id\": \"67b706b995a2ce4fec6c85aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-7.jpg?alt=media&token=0de3e2a9-e2db-44fa-a43c-f5bee8c92fb5\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-20T10:40:57.856Z\",\n            \"updatedAt\": \"2025-02-20T10:44:15.365Z\"\n        },\n        {\n            \"_id\": \"67b5f61fcf3005ccec6adda6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-19T15:17:52.410Z\",\n            \"updatedAt\": \"2025-02-19T15:17:52.410Z\"\n        },\n        {\n            \"_id\": \"67b5dbd603cfb9697ec0a430\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-19T13:25:43.226Z\",\n            \"updatedAt\": \"2025-02-19T13:25:43.226Z\"\n        },\n        {\n            \"_id\": \"67b5c010d9896d7863f847aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-19T11:27:13.008Z\",\n            \"updatedAt\": \"2025-02-19T11:37:30.224Z\"\n        },\n        {\n            \"_id\": \"67b4ce4accf9c87d46799d28\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T18:15:39.126Z\",\n            \"updatedAt\": \"2025-02-18T18:15:39.126Z\"\n        },\n        {\n            \"_id\": \"67b4a585d7c39613cd0cb399\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T15:21:42.105Z\",\n            \"updatedAt\": \"2025-02-18T15:21:42.105Z\"\n        },\n        {\n            \"_id\": \"67b499368b3cf193f114d6df\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T14:29:10.832Z\",\n            \"updatedAt\": \"2025-02-18T14:29:10.832Z\"\n        },\n        {\n            \"_id\": \"67b495a4042eb57a951ec226\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T14:13:56.667Z\",\n            \"updatedAt\": \"2025-02-18T14:13:56.667Z\"\n        },\n        {\n            \"_id\": \"67b47b2208c6a7f3a835a67d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-18T12:20:50.980Z\",\n            \"updatedAt\": \"2025-02-18T12:20:50.980Z\"\n        },\n        {\n            \"_id\": \"67b388c0b185ad5dac973775\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-10.jpg?alt=media&token=4b8d36aa-5629-4df3-a5bb-55fd32c076bc\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"asdfadsfdas\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-17T19:06:40.365Z\",\n            \"updatedAt\": \"2025-02-17T19:06:40.815Z\"\n        },\n        {\n            \"_id\": \"67b338c9b4f09966f6d5fc1b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-17T13:25:30.637Z\",\n            \"updatedAt\": \"2025-02-17T13:25:30.637Z\"\n        },\n        {\n            \"_id\": \"67ae292d59ee6ac781e07c7f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T17:17:34.323Z\",\n            \"updatedAt\": \"2025-02-13T17:17:34.323Z\"\n        },\n        {\n            \"_id\": \"67ae291202fe2c3cd459333d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T17:17:07.120Z\",\n            \"updatedAt\": \"2025-02-13T17:17:07.120Z\"\n        },\n        {\n            \"_id\": \"67ae100ccf90e4cf9dd7354b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T15:30:20.717Z\",\n            \"updatedAt\": \"2025-02-13T15:30:20.717Z\"\n        },\n        {\n            \"_id\": \"67ae0c5537ea5c61738ba333\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T15:14:30.179Z\",\n            \"updatedAt\": \"2025-02-13T15:14:30.179Z\"\n        },\n        {\n            \"_id\": \"67adeeea7feb70128c1c40de\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"standalone\": true,\n            \"creator\": \"67a0a2fe21688e4c700079b2\",\n            \"title\": \"Feb 13 test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T13:08:58.440Z\",\n            \"updatedAt\": \"2025-02-13T13:24:21.648Z\"\n        },\n        {\n            \"_id\": \"67ade9935127f580fce1bd56\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-6.jpg?alt=media&token=836de927-f967-4d4c-9a53-d5f21b490b72\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T12:46:11.952Z\",\n            \"updatedAt\": \"2025-02-13T12:46:26.706Z\"\n        },\n        {\n            \"_id\": \"67ade98cdb73bdd7d562b430\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"standalone\": true,\n            \"creator\": \"67aca3c42680f184bb19dee5\",\n            \"title\": \"tets\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T12:46:04.841Z\",\n            \"updatedAt\": \"2025-02-13T12:46:11.285Z\"\n        },\n        {\n            \"_id\": \"67ade71d02bfdb0afea35d6b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T12:35:41.738Z\",\n            \"updatedAt\": \"2025-02-13T12:35:41.738Z\"\n        },\n        {\n            \"_id\": \"67adb6b9c0c79f3a6281852e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-9.jpg?alt=media&token=d2014e41-3b7d-48a1-9916-fb8152fd42d4\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"meeting test\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:09:13.481Z\",\n            \"updatedAt\": \"2025-02-13T09:28:52.635Z\"\n        },\n        {\n            \"_id\": \"67adb9ed01ae5b4206fc4079\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-7.jpg?alt=media&token=b938edb0-0b43-40b7-84a6-9f75b670a2ae\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test 2\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-13T09:22:53.699Z\",\n            \"updatedAt\": \"2025-02-13T09:24:51.102Z\"\n        },\n        {\n            \"_id\": \"67acf6720f8abbe3c6cb5ef4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-12T19:28:51.625Z\",\n            \"updatedAt\": \"2025-02-12T19:28:51.625Z\"\n        },\n        {\n            \"_id\": \"67ab96556eef9a07a8931cba\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T18:26:31.204Z\",\n            \"updatedAt\": \"2025-02-11T18:26:31.204Z\"\n        },\n        {\n            \"_id\": \"67ab5fc2c408fa8836571e90\",\n            \"photoUrl\": \"https://unsplash.com/photos/RX_0vwSPiWs/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw2fHxzYWxlJTIwc3Rvcnl8ZW58MHwwfHx8MTY0Nzc5MTgyMg\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"The Art Of Storytelling For Sales \",\n            \"description\": \"\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:33:38.750Z\",\n            \"updatedAt\": \"2025-02-11T14:33:38.750Z\"\n        },\n        {\n            \"_id\": \"67ab5e7a6b51151f0be2d686\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%209-7.jpg?alt=media&token=16f5b8b9-da2d-4a93-9541-7cfb3d5414ed\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:28:10.740Z\",\n            \"updatedAt\": \"2025-02-11T14:30:01.808Z\"\n        },\n        {\n            \"_id\": \"67ab5b6454144c71f342c003\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T14:15:01.431Z\",\n            \"updatedAt\": \"2025-02-11T14:15:01.431Z\"\n        },\n        {\n            \"_id\": \"67ab252f8fe6a60530b83610\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:23:44.195Z\",\n            \"updatedAt\": \"2025-02-11T10:23:44.195Z\"\n        },\n        {\n            \"_id\": \"67ab2309d09cc5f54dac89fd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:14:33.822Z\",\n            \"updatedAt\": \"2025-02-11T10:14:33.822Z\"\n        },\n        {\n            \"_id\": \"67ab22f6d7fc193374ffbee4\",\n            \"photoUrl\": \"https://unsplash.com/photos/xWYx7TMvodo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwyfHxoYXJhc3NtZW50fGVufDB8MHx8fDE2NTAzNzgzNzc\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Workplace Harassment\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-11T10:14:14.391Z\",\n            \"updatedAt\": \"2025-02-11T10:14:14.391Z\"\n        },\n        {\n            \"_id\": \"67aa1a448b801135f6ca8762\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T15:24:53.578Z\",\n            \"updatedAt\": \"2025-02-10T15:24:53.578Z\"\n        },\n        {\n            \"_id\": \"67aa19d6102ab187dec4eea1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T15:23:02.575Z\",\n            \"updatedAt\": \"2025-02-10T15:23:14.731Z\"\n        },\n        {\n            \"_id\": \"67aa1209254fdaa36091ccb9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T14:49:48.274Z\",\n            \"updatedAt\": \"2025-02-10T14:49:48.274Z\"\n        },\n        {\n            \"_id\": \"67a9f105a34ed423c05d1da6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T12:28:54.101Z\",\n            \"updatedAt\": \"2025-02-10T12:28:54.101Z\"\n        },\n        {\n            \"_id\": \"67a9f03b2553b0e363c83ed7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-10T12:25:32.842Z\",\n            \"updatedAt\": \"2025-02-10T12:25:51.042Z\"\n        },\n        {\n            \"_id\": \"67a62436dce637e090e9f1a8\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-07T15:18:15.552Z\",\n            \"updatedAt\": \"2025-02-07T15:18:15.552Z\"\n        },\n        {\n            \"_id\": \"67a50d871f968ac35aa83bf1\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-06T19:29:11.423Z\",\n            \"updatedAt\": \"2025-02-06T19:29:11.423Z\"\n        },\n        {\n            \"_id\": \"67a4b7897359731763e67ea7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-06T13:22:17.696Z\",\n            \"updatedAt\": \"2025-02-06T13:22:32.079Z\"\n        },\n        {\n            \"_id\": \"67a4919de58eae8b50d2ebfa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-06T10:40:29.954Z\",\n            \"updatedAt\": \"2025-02-06T10:40:29.954Z\"\n        },\n        {\n            \"_id\": \"67a3ac84cc4123d1a57158b7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T18:23:01.488Z\",\n            \"updatedAt\": \"2025-02-05T18:23:01.488Z\"\n        },\n        {\n            \"_id\": \"67a3a7bf973d99669c433d4e\",\n            \"photoUrl\": \"https://unsplash.com/photos/iDGwopsIOI0/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHw4fHxzZWN1cml0eSUyMHxlbnwwfDB8fHwxNjU3MTA3MzYy\",\n            \"standalone\": true,\n            \"creator\": \"64d24adbae8b7b000881e935\",\n            \"title\": \"Laptops MDM enrollment\",\n            \"description\": \"This course covers the installation of MDM on workstations (Windows and Mac). It should be part of every user onboarding process.\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T18:02:39.757Z\",\n            \"updatedAt\": \"2025-02-05T18:02:39.757Z\"\n        },\n        {\n            \"_id\": \"67a39f2aa156a1e1b574d714\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T17:26:03.208Z\",\n            \"updatedAt\": \"2025-02-05T17:26:03.208Z\"\n        },\n        {\n            \"_id\": \"67a33a066979eede5d0604b7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-05T10:14:31.104Z\",\n            \"updatedAt\": \"2025-02-05T10:14:31.104Z\"\n        },\n        {\n            \"_id\": \"67a26b296ce4867f14b0acf9\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Course Reviews\",\n            \"type\": \"module\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T19:31:53.073Z\",\n            \"updatedAt\": \"2025-02-04T20:00:29.413Z\"\n        },\n        {\n            \"_id\": \"67a2699c412ce09aad9b9a53\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T19:25:16.876Z\",\n            \"updatedAt\": \"2025-02-04T19:25:16.876Z\"\n        },\n        {\n            \"_id\": \"67a23283f6638df0e0303892\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T15:30:12.761Z\",\n            \"updatedAt\": \"2025-02-04T15:30:21.220Z\"\n        },\n        {\n            \"_id\": \"67a2178c8c42e8d34ace6016\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T13:35:09.263Z\",\n            \"updatedAt\": \"2025-02-04T13:35:23.921Z\"\n        },\n        {\n            \"_id\": \"67a204c0e55a4c59dae33f1b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T12:14:57.495Z\",\n            \"updatedAt\": \"2025-02-04T12:14:57.495Z\"\n        },\n        {\n            \"_id\": \"67a2049d05f2e5629b623192\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%208-8.jpg?alt=media&token=ecfb6121-c7c7-4e7c-86cb-402c5fa14515\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T12:14:21.884Z\",\n            \"updatedAt\": \"2025-02-04T12:14:21.884Z\"\n        },\n        {\n            \"_id\": \"67a1fa2d05f2e5629b619b33\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T11:29:50.199Z\",\n            \"updatedAt\": \"2025-02-04T11:30:03.935Z\"\n        },\n        {\n            \"_id\": \"67a1fa0a09c80bbe7c032e71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-04T11:29:15.357Z\",\n            \"updatedAt\": \"2025-02-04T11:29:15.357Z\"\n        },\n        {\n            \"_id\": \"67a13bf13981034d10532175\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-03T21:58:09.892Z\",\n            \"updatedAt\": \"2025-02-03T21:58:09.892Z\"\n        },\n        {\n            \"_id\": \"67a0fd2b764eb87c117f1b39\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-02-03T17:30:19.805Z\",\n            \"updatedAt\": \"2025-02-03T17:30:19.805Z\"\n        },\n        {\n            \"_id\": \"679ca61f4101bca622643348\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-31T10:29:52.437Z\",\n            \"updatedAt\": \"2025-01-31T10:29:52.437Z\"\n        },\n        {\n            \"_id\": \"679bc10fa95daa1df47d0203\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T18:12:32.488Z\",\n            \"updatedAt\": \"2025-01-30T18:12:32.488Z\"\n        },\n        {\n            \"_id\": \"679bbdf00e20719f7d5e8c85\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T17:59:12.678Z\",\n            \"updatedAt\": \"2025-01-30T17:59:12.678Z\"\n        },\n        {\n            \"_id\": \"679bb99020cfa23bcc56c3f7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T17:40:33.299Z\",\n            \"updatedAt\": \"2025-01-30T17:40:33.299Z\"\n        },\n        {\n            \"_id\": \"679b97faa969ad58e78cae9c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Advisor Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T15:17:15.283Z\",\n            \"updatedAt\": \"2025-01-30T15:17:31.173Z\"\n        },\n        {\n            \"_id\": \"679b5ab0c2d4d527093692c3\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T10:55:45.121Z\",\n            \"updatedAt\": \"2025-01-30T10:55:45.121Z\"\n        },\n        {\n            \"_id\": \"679b5056b84f784ca7bc2b87\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-30T10:11:35.352Z\",\n            \"updatedAt\": \"2025-01-30T10:11:35.352Z\"\n        },\n        {\n            \"_id\": \"679a631aff088766ea81b52f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-29T17:19:22.956Z\",\n            \"updatedAt\": \"2025-01-29T17:19:22.956Z\"\n        },\n        {\n            \"_id\": \"679a57c332a55d3dcbe1871e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-29T16:30:59.605Z\",\n            \"updatedAt\": \"2025-01-29T16:30:59.605Z\"\n        },\n        {\n            \"_id\": \"67992fa1c18f918746e5f644\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T19:27:29.599Z\",\n            \"updatedAt\": \"2025-01-28T19:27:29.599Z\"\n        },\n        {\n            \"_id\": \"67992f38ae00648ab711f2db\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T19:25:45.166Z\",\n            \"updatedAt\": \"2025-01-28T19:25:45.166Z\"\n        },\n        {\n            \"_id\": \"6798de9458d56326faa9e19f\",\n            \"photoUrl\": \"https://unsplash.com/photos/pb5w9WU1goA/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwxfHxzYXRpc2ZhY3Rpb258ZW58MHwwfHx8MTY3Mzc3NTQ4MQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Post Training Evaluation Survey\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T13:41:40.513Z\",\n            \"updatedAt\": \"2025-01-28T13:41:40.513Z\"\n        },\n        {\n            \"_id\": \"6798dd62ae546f8bb075a471\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F63e0d7aee2cec10008d55e01%2F1675847871113%2F1675848105758%2Fsales%20cycle.png?alt=media&token=c40e037d-6153-42a4-8971-99e925fa9f4b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"SDR Onboarding \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T13:36:36.674Z\",\n            \"updatedAt\": \"2025-01-28T13:39:46.260Z\"\n        },\n        {\n            \"_id\": \"6798ceded5d9df168de49b72\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T12:34:38.999Z\",\n            \"updatedAt\": \"2025-01-28T12:34:38.999Z\"\n        },\n        {\n            \"_id\": \"6798c0c85100d0d033eba646\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T11:34:32.711Z\",\n            \"updatedAt\": \"2025-01-28T11:34:32.711Z\"\n        },\n        {\n            \"_id\": \"6798be95efcf4b92505197d1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T11:25:09.981Z\",\n            \"updatedAt\": \"2025-01-28T11:25:09.981Z\"\n        },\n        {\n            \"_id\": \"6798b6f7ece5f877d7358b3d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-28T10:52:39.993Z\",\n            \"updatedAt\": \"2025-01-28T10:52:39.993Z\"\n        },\n        {\n            \"_id\": \"6797cf3353bd1ddef5ec03d5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T18:23:47.821Z\",\n            \"updatedAt\": \"2025-01-27T18:23:47.821Z\"\n        },\n        {\n            \"_id\": \"6797b4cded70e27d94e3a694\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T16:31:10.232Z\",\n            \"updatedAt\": \"2025-01-27T16:31:10.232Z\"\n        },\n        {\n            \"_id\": \"6797b3225afc231c6f1fed0a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T16:24:02.638Z\",\n            \"updatedAt\": \"2025-01-27T16:24:02.638Z\"\n        },\n        {\n            \"_id\": \"6797afa048ec15be78f3854d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T16:09:04.865Z\",\n            \"updatedAt\": \"2025-01-27T16:09:04.865Z\"\n        },\n        {\n            \"_id\": \"67979911be119693a725190e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T14:32:50.157Z\",\n            \"updatedAt\": \"2025-01-27T14:32:50.157Z\"\n        },\n        {\n            \"_id\": \"679798bb5afc231c6f1dcf14\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Lunch & Learn \",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T14:31:23.393Z\",\n            \"updatedAt\": \"2025-01-27T14:31:35.753Z\"\n        },\n        {\n            \"_id\": \"67977bbf6b695edb784fa81d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T12:27:43.921Z\",\n            \"updatedAt\": \"2025-01-27T12:27:43.921Z\"\n        },\n        {\n            \"_id\": \"6797636079a5da0973515464\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-27T10:43:45.007Z\",\n            \"updatedAt\": \"2025-01-27T10:43:45.007Z\"\n        },\n        {\n            \"_id\": \"679395e9679910d7a3952c8d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-24T13:30:18.188Z\",\n            \"updatedAt\": \"2025-01-24T13:30:18.188Z\"\n        },\n        {\n            \"_id\": \"679395b30816f7de14b3929f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-24T13:29:23.461Z\",\n            \"updatedAt\": \"2025-01-24T13:29:23.461Z\"\n        },\n        {\n            \"_id\": \"67926e6c0816f7de14acbd43\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T16:29:32.732Z\",\n            \"updatedAt\": \"2025-01-23T16:29:32.732Z\"\n        },\n        {\n            \"_id\": \"67926e6255986bae9287049c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T16:29:23.119Z\",\n            \"updatedAt\": \"2025-01-23T16:29:23.119Z\"\n        },\n        {\n            \"_id\": \"6792586b6902668c34adac22\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T14:55:39.852Z\",\n            \"updatedAt\": \"2025-01-23T14:55:39.852Z\"\n        },\n        {\n            \"_id\": \"67923f895e3ea4db611a6db4\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-4.jpg?alt=media&token=0ac634f7-e91e-4991-bfe3-d1f7374694ca\",\n            \"standalone\": true,\n            \"creator\": \"674f2c3c895fdffc24b52039\",\n            \"title\": \"Fabuwood Event\",\n            \"type\": \"event\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T13:09:29.559Z\",\n            \"updatedAt\": \"2025-01-23T13:09:30.122Z\"\n        },\n        {\n            \"_id\": \"679211c67bf29c709505aa8a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:54:15.070Z\",\n            \"updatedAt\": \"2025-01-23T09:54:15.070Z\"\n        },\n        {\n            \"_id\": \"6792112c00384678cc180f81\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-3.jpg?alt=media&token=814f222a-d96a-4830-974a-7d3e6ad727eb\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Sales 101 \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:51:40.252Z\",\n            \"updatedAt\": \"2025-01-23T09:51:51.449Z\"\n        },\n        {\n            \"_id\": \"67920eb99616a9ec14a17433\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:41:13.526Z\",\n            \"updatedAt\": \"2025-01-23T09:41:13.526Z\"\n        },\n        {\n            \"_id\": \"67920b22cf6d83a5a254e320\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-23T09:25:54.683Z\",\n            \"updatedAt\": \"2025-01-23T09:28:11.144Z\"\n        },\n        {\n            \"_id\": \"679145d6cea28905f6f0493d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-22T19:24:07.466Z\",\n            \"updatedAt\": \"2025-01-22T19:24:07.466Z\"\n        },\n        {\n            \"_id\": \"6790e4839a95c12db2db6f46\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-22T12:28:52.427Z\",\n            \"updatedAt\": \"2025-01-22T12:28:52.427Z\"\n        },\n        {\n            \"_id\": \"678fcb736a3fa8a84a974aad\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T16:29:40.378Z\",\n            \"updatedAt\": \"2025-01-21T16:29:40.378Z\"\n        },\n        {\n            \"_id\": \"678fc38c1f8502e2d6c410dc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2011-10.jpg?alt=media&token=2edc5d61-f156-4ae3-b938-417e3fc25de3\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Video Jet AE training \",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T15:55:56.710Z\",\n            \"updatedAt\": \"2025-01-21T16:01:32.237Z\"\n        },\n        {\n            \"_id\": \"678f76e426069dfb67660fe9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T10:28:53.303Z\",\n            \"updatedAt\": \"2025-01-21T10:28:53.303Z\"\n        },\n        {\n            \"_id\": \"678f72678b51fe6ed358ff3a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-21T10:09:43.893Z\",\n            \"updatedAt\": \"2025-01-21T10:09:43.893Z\"\n        },\n        {\n            \"_id\": \"678e84e292c5566d7ab5b2ab\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:16:19.269Z\",\n            \"updatedAt\": \"2025-01-20T17:16:19.269Z\"\n        },\n        {\n            \"_id\": \"678e8464513082de6ca90565\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:14:12.532Z\",\n            \"updatedAt\": \"2025-01-20T17:14:12.532Z\"\n        },\n        {\n            \"_id\": \"678e834d513082de6ca8f87a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:09:34.197Z\",\n            \"updatedAt\": \"2025-01-20T17:09:34.197Z\"\n        },\n        {\n            \"_id\": \"678e833a80b69d87054d5f71\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F626e94b4a167f1aad15a1554%2F1657198879608%2F1657198884322%2Fone%20on%20one%20meeting%20guidelines.png?alt=media&token=7edfe4d8-f03d-4949-8222-5c363e692500\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"1:1 Meeting Guidelines\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T17:09:15.044Z\",\n            \"updatedAt\": \"2025-01-20T17:09:15.044Z\"\n        },\n        {\n            \"_id\": \"678e6e8b80b69d87054b9343\",\n            \"photoUrl\": \"https://unsplash.com/photos/71CjSSB83Wo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb21tdW5pY2F0aW9ufGVufDB8MHx8fDE2NTU2NTExNTA\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Become A More Effective Communicator\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T15:41:00.363Z\",\n            \"updatedAt\": \"2025-01-20T15:41:00.363Z\"\n        },\n        {\n            \"_id\": \"678e44567116a1517bd3adf5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T12:40:55.683Z\",\n            \"updatedAt\": \"2025-01-20T12:40:55.683Z\"\n        },\n        {\n            \"_id\": \"678e242710f966f93e4be098\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-20T10:23:36.423Z\",\n            \"updatedAt\": \"2025-01-20T10:23:36.423Z\"\n        },\n        {\n            \"_id\": \"678a4e8d2533803faafcb08a\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-17T12:35:25.731Z\",\n            \"updatedAt\": \"2025-01-17T12:35:25.731Z\"\n        },\n        {\n            \"_id\": \"67895489e688c5770e66585d\",\n            \"photoUrl\": \"https://unsplash.com/photos/m_HRfLhgABo/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxjb2RlfGVufDB8MHx8fDE2NzUzMzAwODI\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Welcome to the R&D Team\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T18:48:42.466Z\",\n            \"updatedAt\": \"2025-01-16T18:48:42.466Z\"\n        },\n        {\n            \"_id\": \"678931f6e86aa19618d9f3d5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T16:21:11.207Z\",\n            \"updatedAt\": \"2025-01-16T16:21:11.207Z\"\n        },\n        {\n            \"_id\": \"678923364c291da75c7a3a43\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T15:18:15.125Z\",\n            \"updatedAt\": \"2025-01-16T15:18:15.125Z\"\n        },\n        {\n            \"_id\": \"678916b28e875419cdd1320d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T14:24:51.441Z\",\n            \"updatedAt\": \"2025-01-16T14:24:51.441Z\"\n        },\n        {\n            \"_id\": \"6788dd935f0340ca0b6f469b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%206-7.jpg?alt=media&token=0de3e2a9-e2db-44fa-a43c-f5bee8c92fb5\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Journey\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:21:07.099Z\",\n            \"updatedAt\": \"2025-01-16T10:21:07.099Z\"\n        },\n        {\n            \"_id\": \"6788dd7a28d0ead5216bc220\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Untitled Quiz\",\n            \"type\": \"quiz\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:20:42.466Z\",\n            \"updatedAt\": \"2025-01-16T10:20:57.214Z\"\n        },\n        {\n            \"_id\": \"6788dd701f07d35cd25e7ed7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/juno-multi-prod.appspot.com/o/5e80ced2d9dda50017598a23%2Funits%2F625e89e71a2f6e13b1ccb879%2F1651605293033%2FSecurity%20%26%20Data%20Protection.webp?alt=media&token=f43599f2-cb2b-49d7-b6d2-6081506da27b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Security & Data Protection\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:20:32.412Z\",\n            \"updatedAt\": \"2025-01-16T10:20:32.412Z\"\n        },\n        {\n            \"_id\": \"6788dd05d1e0f0576ca38357\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-16T10:18:46.230Z\",\n            \"updatedAt\": \"2025-01-16T10:18:46.230Z\"\n        },\n        {\n            \"_id\": \"6788046a464394fa8462802f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-15T18:54:35.253Z\",\n            \"updatedAt\": \"2025-01-15T18:54:35.253Z\"\n        },\n        {\n            \"_id\": \"6787dd3ce532c8a84393aac5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-15T16:07:25.059Z\",\n            \"updatedAt\": \"2025-01-15T16:07:25.059Z\"\n        },\n        {\n            \"_id\": \"6786c1b36c7f42e7b9241951\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T19:57:40.250Z\",\n            \"updatedAt\": \"2025-01-14T19:57:40.250Z\"\n        },\n        {\n            \"_id\": \"6786ab600a045935c18e439f\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T18:22:25.465Z\",\n            \"updatedAt\": \"2025-01-14T18:22:25.465Z\"\n        },\n        {\n            \"_id\": \"6786ab076c7f42e7b923c91b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T18:20:55.781Z\",\n            \"updatedAt\": \"2025-01-14T18:20:55.781Z\"\n        },\n        {\n            \"_id\": \"6786a90d642474e64e6e2347\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T18:12:30.261Z\",\n            \"updatedAt\": \"2025-01-14T18:12:30.261Z\"\n        },\n        {\n            \"_id\": \"67869d2e3627765dd28df7f9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T17:21:50.601Z\",\n            \"updatedAt\": \"2025-01-14T17:21:50.601Z\"\n        },\n        {\n            \"_id\": \"6786931d6b6143974cd176dc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T16:38:54.395Z\",\n            \"updatedAt\": \"2025-01-14T16:38:54.395Z\"\n        },\n        {\n            \"_id\": \"67867402538991c1b237ea0c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T14:26:10.731Z\",\n            \"updatedAt\": \"2025-01-14T14:26:10.731Z\"\n        },\n        {\n            \"_id\": \"6786582edfe7cc1f5679a490\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-14T12:27:27.245Z\",\n            \"updatedAt\": \"2025-01-14T12:27:27.245Z\"\n        },\n        {\n            \"_id\": \"6785403b52856c2176f3adb1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T16:33:00.078Z\",\n            \"updatedAt\": \"2025-01-13T16:33:00.078Z\"\n        },\n        {\n            \"_id\": \"67850ae68ce07f243ad1060d\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T12:45:39.603Z\",\n            \"updatedAt\": \"2025-01-13T12:45:39.603Z\"\n        },\n        {\n            \"_id\": \"678507a6d4e5a3d66e98b5e9\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T12:31:35.141Z\",\n            \"updatedAt\": \"2025-01-13T12:31:35.141Z\"\n        },\n        {\n            \"_id\": \"6784dd362798f21ae553b97b\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-13T09:30:30.608Z\",\n            \"updatedAt\": \"2025-01-13T09:34:19.175Z\"\n        },\n        {\n            \"_id\": \"67811161de048de29688ba94\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-10T12:24:02.224Z\",\n            \"updatedAt\": \"2025-01-10T12:24:02.224Z\"\n        },\n        {\n            \"_id\": \"67801ce674de00b9e0114d50\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T19:00:55.377Z\",\n            \"updatedAt\": \"2025-01-09T19:00:55.377Z\"\n        },\n        {\n            \"_id\": \"678018ae74de00b9e0113240\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T18:42:55.800Z\",\n            \"updatedAt\": \"2025-01-09T18:42:55.800Z\"\n        },\n        {\n            \"_id\": \"67800b8a7b9ca5b4f62008cf\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T17:46:50.677Z\",\n            \"updatedAt\": \"2025-01-09T17:46:50.677Z\"\n        },\n        {\n            \"_id\": \"677ffa6991ce9ca728a9a391\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T16:33:46.615Z\",\n            \"updatedAt\": \"2025-01-09T16:33:46.615Z\"\n        },\n        {\n            \"_id\": \"677fc79d7da2f61712078c04\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2010-5.jpg?alt=media&token=e82a949b-e72b-4137-bf01-65e5cdaaa739\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Nayax - Lunch & Learn \",\n            \"type\": \"webinar\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T12:57:01.637Z\",\n            \"updatedAt\": \"2025-01-09T12:57:02.172Z\"\n        },\n        {\n            \"_id\": \"677fc7360976d1d354c0e7c4\",\n            \"photoUrl\": \"https://unsplash.com/photos/1Lf5Adh9SCg/download?ixid=MnwyNTQ4MDN8MHwxfHNlYXJjaHwzfHxlbXBsb3llZSUyMGVuZ2FnZW1lbnR8ZW58MHwwfHx8MTY2NjI3MTU4NQ\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"Employee Engagement Survey \",\n            \"description\": \"\",\n            \"type\": \"survey\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T12:55:18.054Z\",\n            \"updatedAt\": \"2025-01-09T12:55:18.054Z\"\n        },\n        {\n            \"_id\": \"677fc3b2830b2063957ce061\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T12:40:18.936Z\",\n            \"updatedAt\": \"2025-01-09T12:40:18.936Z\"\n        },\n        {\n            \"_id\": \"677fa767916dc693a2d94674\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T10:39:36.199Z\",\n            \"updatedAt\": \"2025-01-09T10:39:36.199Z\"\n        },\n        {\n            \"_id\": \"677fa767d08ebc5d552f0dbc\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T10:39:35.903Z\",\n            \"updatedAt\": \"2025-01-09T10:39:35.903Z\"\n        },\n        {\n            \"_id\": \"677fa5f9034c90b7d8d78822\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-09T10:33:29.892Z\",\n            \"updatedAt\": \"2025-01-09T10:33:29.892Z\"\n        },\n        {\n            \"_id\": \"677ea7587664448709eee149\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-08T16:27:05.191Z\",\n            \"updatedAt\": \"2025-01-08T16:27:05.191Z\"\n        },\n        {\n            \"_id\": \"677e94b3d3529ba1d94379aa\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-08T15:07:31.715Z\",\n            \"updatedAt\": \"2025-01-08T15:07:31.715Z\"\n        },\n        {\n            \"_id\": \"677e5d23e0d6cc0919c1f55e\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-08T11:10:27.913Z\",\n            \"updatedAt\": \"2025-01-08T11:10:27.913Z\"\n        },\n        {\n            \"_id\": \"677d78b12912b781da83f9eb\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T18:55:46.562Z\",\n            \"updatedAt\": \"2025-01-07T18:55:46.562Z\"\n        },\n        {\n            \"_id\": \"677d71e57904f183397f5e90\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T18:26:46.360Z\",\n            \"updatedAt\": \"2025-01-07T18:26:46.360Z\"\n        },\n        {\n            \"_id\": \"677d59a8dd05f121baa7449c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T16:43:21.551Z\",\n            \"updatedAt\": \"2025-01-07T16:43:21.551Z\"\n        },\n        {\n            \"_id\": \"677d5526f40283627d107c18\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T16:24:07.453Z\",\n            \"updatedAt\": \"2025-01-07T16:24:07.453Z\"\n        },\n        {\n            \"_id\": \"677d4b310dd1cdf60cb37437\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T15:41:38.158Z\",\n            \"updatedAt\": \"2025-01-07T15:41:38.158Z\"\n        },\n        {\n            \"_id\": \"677d4b11f3d2d0be7f15fed1\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T15:41:06.524Z\",\n            \"updatedAt\": \"2025-01-07T15:41:06.524Z\"\n        },\n        {\n            \"_id\": \"677d46bcf3d2d0be7f15aea6\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T15:22:36.830Z\",\n            \"updatedAt\": \"2025-01-07T15:22:36.830Z\"\n        },\n        {\n            \"_id\": \"677d3c12b7de14d906c9eadd\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:37:07.448Z\",\n            \"updatedAt\": \"2025-01-07T14:37:07.448Z\"\n        },\n        {\n            \"_id\": \"677d397e0dd1cdf60cb11378\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:26:06.748Z\",\n            \"updatedAt\": \"2025-01-07T14:26:06.748Z\"\n        },\n        {\n            \"_id\": \"677d37ebf3d2d0be7f1436ee\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:19:23.866Z\",\n            \"updatedAt\": \"2025-01-07T14:19:23.866Z\"\n        },\n        {\n            \"_id\": \"677d37ad0dd1cdf60cb0e5c7\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:18:22.171Z\",\n            \"updatedAt\": \"2025-01-07T14:18:22.171Z\"\n        },\n        {\n            \"_id\": \"677d35d9ade7b5cfa69a15d5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T14:10:34.532Z\",\n            \"updatedAt\": \"2025-01-07T14:10:34.532Z\"\n        },\n        {\n            \"_id\": \"677d2903f40283627d08e03d\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"677d234f37ec1b511f03c38c\",\n            \"title\": \"Sol's Best Practices for Discovery Calls\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-07T13:15:47.180Z\",\n            \"updatedAt\": \"2025-01-07T13:16:06.933Z\"\n        },\n        {\n            \"_id\": \"677bac283f3e1105dab003a5\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-06T10:10:49.099Z\",\n            \"updatedAt\": \"2025-01-06T10:10:49.099Z\"\n        },\n        {\n            \"_id\": \"6777f65302e70595229d3e0c\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-03T14:38:12.706Z\",\n            \"updatedAt\": \"2025-01-03T14:38:12.706Z\"\n        },\n        {\n            \"_id\": \"67766d8570972ea3336e6852\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-02T10:42:13.627Z\",\n            \"updatedAt\": \"2025-01-02T10:42:13.627Z\"\n        },\n        {\n            \"_id\": \"6775252ac24f2dc4c7d268d0\",\n            \"photoUrl\": \"https://firebasestorage.googleapis.com/v0/b/test-coursefit.appspot.com/o/images%2FArtboard%201%20copy%2012-5.jpg?alt=media&token=296f4ab2-03b9-4452-84a7-542973b9016b\",\n            \"standalone\": true,\n            \"creator\": \"661e9f6f837167de22141b66\",\n            \"title\": \"New Hire First Week\",\n            \"type\": \"path\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-01-01T11:21:15.590Z\",\n            \"updatedAt\": \"2025-01-01T11:21:15.590Z\"\n        }\n    ]\n}"},{"id":"d0d472a5-1f54-48f1-81c5-810d9e0f1011","name":"List Units - all filters combined","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"creator\": \"64ae8d32cb525e00095e8b76\",\n        \"type\": \"learning\",\n        \"createdAt\": {\n            \"from\": \"2025-01-01\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/units/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"expect-ct","value":"max-age=0"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"x-download-options","value":"noopen"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"68b-PzhFqshk2yLBfSWL54gid4IwwTc\""},{"key":"vary","value":"Accept-Encoding"},{"key":"content-encoding","value":"gzip"},{"key":"date","value":"Wed, 30 Apr 2025 09:59:07 GMT"},{"key":"server","value":"Google Frontend"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"dataLength\": 4,\n    \"data\": [\n        {\n            \"_id\": \"67d81c06e200296dc3a53f2c\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"test for eran\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-03-17T12:56:38.484Z\",\n            \"updatedAt\": \"2025-04-22T16:24:03.276Z\"\n        },\n        {\n            \"_id\": \"67fd53dddcb2f5886154b266\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T18:28:45.826Z\",\n            \"updatedAt\": \"2025-04-14T18:30:38.476Z\"\n        },\n        {\n            \"_id\": \"67fcd7ab95db8e3b89516b0e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-14T09:38:51.037Z\",\n            \"updatedAt\": \"2025-04-14T09:40:34.001Z\"\n        },\n        {\n            \"_id\": \"67f538a395db8e3b8950c05e\",\n            \"photoUrl\": \"https://images.unsplash.com/photo-1553356084-58ef4a67b2a7?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80\",\n            \"standalone\": true,\n            \"creator\": \"64ae8d32cb525e00095e8b76\",\n            \"title\": \"Untitled Course\",\n            \"type\": \"learning\",\n            \"tid\": \"64ae8d32cb525e00095e8b71\",\n            \"createdAt\": \"2025-04-08T14:54:27.915Z\",\n            \"updatedAt\": \"2025-04-08T15:00:12.188Z\"\n        }\n    ]\n}"}],"_postman_id":"9023a6b6-9f87-42b9-b717-644981a83026"}],"id":"68780e3a-3ede-4044-b1f5-31131110df39","_postman_id":"68780e3a-3ede-4044-b1f5-31131110df39","description":""},{"name":"Events - DEPRECATED","item":[{"name":"List Events - DEPRECATED","id":"08d8912e-cc79-4532-ab4f-f932b62d3d60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\":{\n        \"timestamp\":{\n            \"from\": 1679770400000        }\n    }, \n    \"sort\":{\n        \"timestamp\" :1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/events/.search","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Name</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>eventType</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>userId</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>tid</td>\n<td>STRING</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>NUMERIC</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td>JSON</td>\n<td></td>\n</tr>\n<tr>\n<td>title</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>creator</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>customRequest</td>\n<td>BOOLEAN</td>\n<td></td>\n</tr>\n<tr>\n<td>provider</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>assinedBy</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>balanceAmount</td>\n<td>FLOAT</td>\n<td></td>\n</tr>\n<tr>\n<td>duration</td>\n<td>NUMERIC</td>\n<td></td>\n</tr>\n<tr>\n<td>tags</td>\n<td>JSON</td>\n<td></td>\n</tr>\n<tr>\n<td>skillName</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>autority</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>serchValue</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>progressStatus</td>\n<td>STRING</td>\n<td></td>\n</tr>\n<tr>\n<td>price</td>\n<td>NUMERIC</td>\n<td></td>\n</tr>\n<tr>\n<td>feedbackValue</td>\n<td>NUMERIC</td>\n<td></td>\n</tr>\n<tr>\n<td>requestType</td>\n<td>STRING</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>eventType might get the following values:</p>\n<p>INTERNAL CONTENT STARTED - SURVEY STARTED -INTERNAL CONTENT COMPLETED - SURVEY COMPLETED -BUDGET REQUEST CREATED - USER ACTIVE DAY -CONTENT ADDED COMPANY ACADEMY - VOUCHER CHARGE -SKILL ADDED TO TIMELINE -CONTENT ADDED CHANNEL -NEW SEARCH EXTERNAL - CERTIFICATION ADDED -CONTENT CREATED - EXTERNAL CONTENT STATUS UPDATE -EXTERNAL CONTENT FEEDBACK -USER CREATE ASSIGNMENT - USER WAS ASSIGNED AN ASSIGNMENT -</p>\n<p>This API endpoint returns a list of activities based on the specified search criteria.</p>\n<p>Request Body:</p>\n<ul>\n<li>The request body should be in JSON format, and include the following properties:<ul>\n<li><code>filters</code>: Optional. An object that represents the filter criteria for the search. Uses a subset of MongoDB's query language objects. Refer to the specific resource schema for the appropriate filter criteria. available filters are <code>eventType</code> , <code>startDate</code>, <code>endDate</code> <code>userId</code></li>\n<li><code>limit</code>: Optional. The maximum number of results to return. Default is 10 maximum 50.</li>\n<li><code>skip</code>: Optional. The number of results to skip before returning. Default is 0.</li>\n<li><code>sort</code>: Optional. An object that represents the sort criteria for the search. Uses a similar syntax as the MongoDB sort object. Refer to the specific resource schema for the appropriate sort criteria.</li>\n<li><code>select</code>: Optional. An object that represents the projection criteria for the search. Uses a similar syntax as the MongoDB project object. Refer to the specific resource schema for the appropriate projection criteria.</li>\n</ul>\n</li>\n</ul>\n<p>Upon successful completion, this endpoint returns a JSON response with the following fields:</p>\n<ul>\n<li>data (array): An array of events objects matching the specified search criteria.</li>\n<li>dataLength (integer): The number of events objects returned in the \"data\" field.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","public-api","events",".search"],"host":["api-prod","the-juno","com"],"query":[],"variable":[]}},"response":[{"id":"bdcc6c01-9fae-473a-911a-03274e468f4c","name":"List Events by event type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"eventType\": \"content_created\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/events/.search"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"76303876-97ae-47a4-940d-32903919d6f1","name":"List Events by user","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {\n        \"userId\": \"63f5c973e5a44a0be5e739b4\"\n    },\n    \"limit\": 30,\n    \"skip\": 0,\n    \"sort\": {\n        \"timestamp\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/events/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"4179-MfrBob2aG4K43JQ6iW03MRyTBJQ\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 14 Mar 2023 08:56:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:14:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:39:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb78192d275946b8d7479b\\\"}\",\n        \"title\": \"test share\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5c5aba838924f432d19df998\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"617803e3cc40f91ad40b1493\\\":1,\\\"63fb78012d275946b8d7475f\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:39:37.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb78192d275946b8d7479b\\\"}\",\n        \"title\": \"test share\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1235\",\n        \"tags\": \"{\\\"5c5aba838924f432d19df998\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"617803e3cc40f91ad40b1493\\\":1,\\\"63fb78012d275946b8d7475f\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T07:45:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:37:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test share 2\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:38:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:41:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fc6c1a8118294e54ce2fb1\\\"}\",\n        \"title\": \"test test\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"606c1e8d8eb0023da487f381\\\":1,\\\"615546e3321a0013f899642d\\\":1,\\\"63fc6c2b8118294e54ce2fe1\\\":1,\\\"63fc6c2e8118294e54ce2fe8\\\":1,\\\"63fc6c308118294e54ce2ff0\\\":1,\\\"63fc6c338118294e54ce2ff8\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:41:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fc6c1a8118294e54ce2fb1\\\"}\",\n        \"title\": \"test test\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"884\",\n        \"tags\": \"{\\\"606c1e8d8eb0023da487f381\\\":1,\\\"615546e3321a0013f899642d\\\":1,\\\"63fc6c2b8118294e54ce2fe1\\\":1,\\\"63fc6c2e8118294e54ce2fe8\\\":1,\\\"63fc6c308118294e54ce2ff0\\\":1,\\\"63fc6c338118294e54ce2ff8\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:41:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test test\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:11:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:17:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:22:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:22:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:22:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:11:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"my new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:11:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"my new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:15:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:15:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:15:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:25:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:25:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:13:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb73832d275946b8d741ad\\\"}\",\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5f97c5b96db3070065fdbce8\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"606ef8804b9ee1419836c68c\\\":1,\\\"615546e3321a0013f899642d\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:13:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb73832d275946b8d741ad\\\"}\",\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2539\",\n        \"tags\": \"{\\\"5f97c5b96db3070065fdbce8\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"606ef8804b9ee1419836c68c\\\":1,\\\"615546e3321a0013f899642d\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:00:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:00:51.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb3f8f1cd3432060232dc4\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:40:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T09:40:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T10:03:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb2286b0589556c0f1f492\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-07T08:48:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T07:35:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    }\n]"},{"id":"49fb3277-d1d5-493b-9759-c85830e864b9","name":"List Events by user and event type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"filters\": {},\n    \"limit\": 30,\n    \"skip\": 0,\n    \"sort\": {\n        \"timestamp\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-prod.the-juno.com/api/v1/public-api/events/.search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b56b2-anWfhxFb7Kml9ouNAefLkD+qez8\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 14 Mar 2023 08:36:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-13T07:00:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventsdfsaf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-13T07:00:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventsdfsaf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-13T07:34:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-13T07:34:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T00:14:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-11T15:15:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T06:56:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T09:04:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T08:03:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Event\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T08:03:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Event\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T07:24:22.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c86ecfce73bc4c30e15f56\\\",\\\"requestId\\\":\\\"640d7e264983c10008d364b6\\\"}\",\n        \"title\": \"sdf\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"sdf\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-14T08:27:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T11:56:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T11:58:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T12:02:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T12:03:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T12:04:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T12:05:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T17:17:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T17:41:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T15:34:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-12T18:10:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T16:43:41.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63b309bdc2f1771c4fa6f96a\\\"}\",\n        \"title\": \"Selenium WebDriver with Java - Basics to Advanced and Frameworks\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"oreilly\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T06:42:01.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61f93318de33ff1e6830caf5\\\",\\\"requestId\\\":\\\"63b3ce397eb0f33670c0acaf\\\"}\",\n        \"title\": \"Java Design Patterns & SOLID Design Principles\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T12:43:35.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c074d7ccdf9e3f0c392cc4\\\",\\\"requestId\\\":\\\"63c93af7e935bc8679568340\\\"}\",\n        \"title\": \"Learning to Be Promotable\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"linkedin\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"certification_added\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T14:32:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Disciplined Agile Scrum Master (DASM) Certification\",\n        \"creator\": null,\n        \"type\": \"certification\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": \"PMI\",\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"certification_added\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:39:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"sdfasfd safdsafsadfsd\",\n        \"creator\": null,\n        \"type\": \"certification\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": \"Juno Test Okta\",\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"certification_added\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:20:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"qwdsf\",\n        \"creator\": null,\n        \"type\": \"certification\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": \"sdfsadf\",\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"certification_added\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T12:34:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"qwdsf\",\n        \"creator\": null,\n        \"type\": \"certification\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": \"sdfsadf\",\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T16:13:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T10:41:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"sdxzcvsDF AEF\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:46:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"courses with xApi\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T18:16:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"random\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T08:22:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"second training\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:10:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"for faf 2023\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:01:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T16:17:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test 222\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:30:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"testttt\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T07:53:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test price webinar\",\n        \"creator\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:28:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"testing locking element\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T10:09:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"3 sections\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T10:04:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test question\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:37:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitledsd fasdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:41:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitledד גשכדגכדשגכדגכ\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:31:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitledasdfdsfds\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:32:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitledasdfdsfds\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:32:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:49:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"manager test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:51:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"journey test\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:14:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:48:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:11:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:34:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:07:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitledg\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:33:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event type\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T17:27:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test event\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"webinar\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:16:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"event with manager approval and price\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:57:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventsdaf sdfa\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T12:03:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"waiting list\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T11:12:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventfsfsfs\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T13:01:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"testtt\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T16:03:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_feedback\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-29T14:55:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_feedback\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:09:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": \"5\",\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_feedback\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:12:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_feedback\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:13:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": \"1\",\n        \"feedbackIsRecommended\": \"no\",\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_feedback\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:01:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"ongoing\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_feedback\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:07:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": \"4\",\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-29T14:40:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-29T14:40:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T06:24:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T06:32:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-29T14:54:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:07:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:13:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"ongoing\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T06:57:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"ongoing\",\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:08:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"ongoing\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T06:48:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Scalable Microservices with Kubernetes\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:11:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:11:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"ongoing\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:13:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T07:09:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Kubernetes Hands-On - Deploy Microservices to the AWS Cloud\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"38.24\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:08:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"microsoft_excel\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:13:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"databases\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T14:36:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"c_sharp\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T12:41:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T15:25:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"Cyber Security feef ef efe fefe f\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T05:47:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T05:48:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T13:41:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T14:45:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"react_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:15:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T14:10:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"react_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T14:18:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"sql\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T14:59:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"react_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T14:37:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"leadership\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:57:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T05:46:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T05:45:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T09:11:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T07:54:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T16:43:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T15:02:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"react_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:38:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T07:45:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T14:14:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T14:19:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63b1b2b98be9f8523a8c926b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T16:24:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"leadership\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T12:43:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"leadership\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T16:29:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"react_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:21:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"sql\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T09:44:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"Data Analysis with Pandas and Python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T15:23:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"כחיעקכ עכחקיעקכ חיעכ\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:03:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"sql\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:41:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T06:03:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T06:10:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:37:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:39:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"project_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:36:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:35:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"project_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T14:05:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"sql\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T15:24:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T15:02:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"react_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:18:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"sql\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:34:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:40:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"project_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T15:24:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"cyber_security\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T07:35:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T12:22:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T15:29:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T06:40:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T12:48:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"aws\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T07:32:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"project_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T10:13:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T13:36:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:33:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:57:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"time_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T09:23:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:39:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:45:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:46:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:54:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:02:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:11:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"time_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:20:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:25:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:28:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T08:30:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"personal_transformation\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:49:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:49:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T07:07:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T12:57:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"sql\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:43:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"leadership\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:35:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"express_js\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T16:52:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T17:04:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"coll\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"skill_added_to_timeline\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T08:21:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": \"Microsoft Office 365\",\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:01:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:31:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T20:36:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T22:18:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T06:22:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T05:23:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T14:15:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63cd4809932c6e224fee56da\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:28:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:15:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T08:46:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T10:10:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T10:18:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T06:50:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T05:54:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T11:43:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T06:27:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-27T06:11:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-28T05:44:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T13:46:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-29T10:25:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T08:10:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:39:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-28T07:50:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:11:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-27T04:50:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T12:59:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T06:06:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T11:51:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T14:14:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T13:57:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-15T08:28:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T08:25:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T11:36:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T12:19:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:59:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T07:59:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:32:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:52:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T08:56:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ed40c69a91e21079c446140\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:28:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T09:19:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T16:04:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T07:54:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"62428d2d6c63e53554c8fd72\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T10:08:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T09:06:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:23:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:41:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T15:51:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T08:04:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T10:29:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63cd4709932c6e224fee537c\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:24:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T11:55:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T06:50:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T15:16:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T07:58:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:38:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:23:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T12:18:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T06:25:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-26T09:50:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:23:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T09:47:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T06:42:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:20:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-15T06:08:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T13:40:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T11:43:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T06:22:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T10:04:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T12:25:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T08:09:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:57:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:59:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:58:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T10:36:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T05:45:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-28T05:52:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ba99dbaca39476937b7ec9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T10:31:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T06:40:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T13:28:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:27:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-26T08:20:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T07:51:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-27T06:47:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T10:58:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:04:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-29T06:23:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T09:22:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T08:15:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T10:58:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T18:54:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63baa76b7041c577ce98d506\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T11:24:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:00:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T15:34:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T06:45:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T15:03:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:04:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63b1b2b98be9f8523a8c926b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-01T16:23:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T08:06:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T12:55:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T12:37:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63baa76b7041c577ce98d508\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T11:25:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T13:36:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T12:28:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T13:21:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T08:37:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T14:05:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T10:28:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T15:02:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T16:06:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T12:35:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T12:28:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T09:36:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T12:47:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T13:15:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T07:57:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T05:22:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T05:32:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:43:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:45:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T06:55:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:03:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:15:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T11:25:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:12:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:12:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:13:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T17:16:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:48:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:42:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T04:40:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:56:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6180016c0ed527224c6673ea\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:34:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T05:53:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T10:40:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e32a7f8fc46e45f009ca5f2\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T10:40:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T09:56:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f48758b0f3365378a6d393\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:57:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f487b0b0f3365378a6d64f\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:58:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T13:33:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T06:43:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6180016c0ed527224c6673ea\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:53:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:55:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6180016c0ed527224c6673ea\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T11:01:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T11:16:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T16:54:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T05:52:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:04:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:18:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:31:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f72ba1edad4c4a75fcfa99\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T10:26:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T07:33:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T07:50:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T12:05:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:26:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:27:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:28:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:31:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:34:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:36:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:39:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:42:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:42:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:43:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:46:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:47:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:47:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:48:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:50:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:58:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:02:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:11:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:11:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:16:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:16:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:16:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:55:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test webinar\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"webinar\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:20:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:21:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:24:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:24:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:26:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:29:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:30:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:32:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:33:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:33:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:42:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:42:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:42:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:42:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:44:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:45:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:45:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:49:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:49:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:52:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:14:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T14:55:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T14:58:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:52:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test leave event\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:37:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test share 2\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:41:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test test\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T11:10:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T11:13:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:20:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T07:00:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T07:45:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T05:27:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"The Persuasion Code The Neuroscience of Sales\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T05:57:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T05:57:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:20:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:20:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:29:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"The Persuasion Code: The Neuroscience of Sales\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:29:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"The Persuasion Code: The Neuroscience of Sales\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:30:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"The Persuasion Code The Neuroscience of Sales\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:11:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"my new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:15:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:25:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T12:32:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python for\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T12:33:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python for\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T12:34:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python for\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T07:51:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6180016c0ed527224c6673ea\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T08:16:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T11:51:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T04:44:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T05:02:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test 2 sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T08:48:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"web_development\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T11:06:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"leadership\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f72ba1edad4c4a75fcfa99\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T05:56:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T06:04:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T07:50:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T10:33:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventg r\",\n        \"creator\": \"5ddf8f013af1e8212c72ec01\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T14:28:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"project_management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T13:50:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f72ba1edad4c4a75fcfa99\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T06:43:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T06:52:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T13:49:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test price\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T15:12:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"faf sssss\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"ilt\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T09:10:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test 123\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T13:41:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T15:33:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T13:49:51.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\",\\\"unitId\\\":\\\"63a9a673176fc03356ba8e3d\\\"}\",\n        \"title\": \"testtttt\",\n        \"creator\": null,\n        \"type\": \"article\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T13:49:02.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\",\\\"unitId\\\":\\\"631ece8c464154643bc4d8d8\\\"}\",\n        \"title\": \"Course Reviews\",\n        \"creator\": null,\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T13:44:13.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"62a839d45a211411c4080307\\\",\\\"unitId\\\":\\\"5c6a5cd78924f41b8803f87d\\\"}\",\n        \"title\": \"Leadership: Growth Mindset for Leadership and Organizations\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"test channel 3\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T09:27:24.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6200e27aea05cc4bb48ed598\\\",\\\"unitId\\\":\\\"5c6997968924f40c4c7a8e96\\\"}\",\n        \"title\": \"Basics of Scrum, Agile and Project Delivery\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"General\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T23:08:33.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63d6fc600f5e2c3c27043a9c\\\",\\\"unitId\\\":\\\"5c6997968924f40c4c7a8ed9\\\"}\",\n        \"title\": \"Oracle SQL - A Complete Introduction\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"fsdfds\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-27T05:54:15.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\",\\\"unitId\\\":\\\"636c9f873113339af7f0b071\\\"}\",\n        \"title\": \"faf Journey\",\n        \"creator\": null,\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T16:29:47.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\",\\\"unitId\\\":\\\"636c9f873113339af7f0b071\\\"}\",\n        \"title\": \"faf Journey\",\n        \"creator\": null,\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-27T05:54:21.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"62b077e856faf52124cbb10a\\\",\\\"unitId\\\":\\\"636c9f873113339af7f0b071\\\"}\",\n        \"title\": \"faf Journey\",\n        \"creator\": null,\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"React News\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T16:30:03.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\",\\\"unitId\\\":\\\"636c9f873113339af7f0b071\\\"}\",\n        \"title\": \"faf Journey\",\n        \"creator\": null,\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T13:45:22.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\"}\",\n        \"title\": \"second training\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T13:45:56.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\"}\",\n        \"title\": \"second training\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T13:48:21.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\"}\",\n        \"title\": \"Course Reviews\",\n        \"creator\": null,\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-26T13:46:57.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"6256f46897b3e72c54d953b0\\\"}\",\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": null,\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"Test channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:18:08.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f6111de5a44a0be5e76691\\\",\\\"unitId\\\":\\\"63f5dd924f31d6424c303746\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"MTV\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:18:35.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f6111de5a44a0be5e76691\\\",\\\"unitId\\\":\\\"63f5dd924f31d6424c303746\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"MTV\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:18:43.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f6111de5a44a0be5e76691\\\",\\\"unitId\\\":\\\"63f5dd924f31d6424c303746\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"MTV\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:31:55.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f6111de5a44a0be5e76691\\\",\\\"unitId\\\":\\\"63f5dd924f31d6424c303746\\\"}\",\n        \"title\": \"Untitledasdfdsfds\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"MTV\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:34:39.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f639394f31d6424c30517c\\\",\\\"unitId\\\":\\\"63f716cd4f31d6424c3073e0\\\"}\",\n        \"title\": \"NOC & TSE\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"nirs channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:56:41.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f639394f31d6424c30517c\\\",\\\"unitId\\\":\\\"63f71c1f4f31d6424c3077ec\\\"}\",\n        \"title\": \"Q&A\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"nirs channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_channel\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:31:48.000Z\"\n        },\n        \"metadata\": \"{\\\"channelId\\\":\\\"63f639394f31d6424c30517c\\\",\\\"unitId\\\":\\\"63f716404f31d6424c307320\\\"}\",\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": null,\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": \"nirs channel\",\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T10:40:24.000Z\"\n        },\n        \"metadata\": \"{}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"ongoing\",\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"external_content_status_update\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T13:45:28.000Z\"\n        },\n        \"metadata\": \"{}\",\n        \"title\": \"rere\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": \"Completed\",\n        \"price\": \"3\",\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T13:45:27.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bfcbc953394f6464c2b226\\\"}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:28:25.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f9e4dfca885c30065e1517b\\\"}\",\n        \"title\": \"Step 1\",\n        \"creator\": \"5e3a8f0f1b76ed9c5833b7db\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1400\",\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T13:21:06.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f605a0ee1b198006cedbb49\\\"}\",\n        \"title\": \"data documentation\",\n        \"creator\": \"5f604754e1b198006cedbb3d\",\n        \"type\": \"task\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T13:21:15.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f60653ce1b198006cedbb4d\\\"}\",\n        \"title\": \"full normalization function\",\n        \"creator\": \"5f604754e1b198006cedbb3d\",\n        \"type\": \"task\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-19T05:34:14.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"639b3aeb66075608be6970a9\\\"}\",\n        \"title\": \"test 222\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T15:38:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"639b3aeb66075608be6970a9\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-19T05:32:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"639b3aeb66075608be6970a9\\\"}\",\n        \"title\": \"test 222\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T16:13:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"639b3aeb66075608be6970a9\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:36:21.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f45d4a219e7c5387039e35a\\\"}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:59:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"615d6343686f8c44cc53e773\\\"}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:28:24.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f9e4dfca885c30065e1517b\\\"}\",\n        \"title\": \"Step 1\",\n        \"creator\": \"5e3a8f0f1b76ed9c5833b7db\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-19T05:34:12.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"639b3aeb66075608be6970a9\\\"}\",\n        \"title\": \"test 222\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T08:25:02.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"602a66135b94ad4cf4a215b5\\\"}\",\n        \"title\": \"welcome1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"skill_added_to_timeline\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:13:41.000Z\"\n        },\n        \"metadata\": \"{\\\"skillId\\\":\\\"databases\\\"}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": \"skillDevelopment\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": \"Databases\",\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"skill_added_to_timeline\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T13:58:45.000Z\"\n        },\n        \"metadata\": \"{\\\"skillId\\\":\\\"gaap\\\"}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": \"skillDevelopment\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": \"GAAP\",\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"skill_added_to_timeline\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:35:14.000Z\"\n        },\n        \"metadata\": \"{\\\"skillId\\\":\\\"express_js\\\"}\",\n        \"title\": null,\n        \"creator\": null,\n        \"type\": \"skillDevelopment\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": \"Express JS\",\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_create_assignment\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:39:52.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5ed4ee336d176a129c5b3f5d\\\",\\\"members\\\":{},\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_create_assignment\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:16.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"members\\\":{},\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_create_assignment\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:49:33.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"members\\\":{\\\"5e119872ddc58a61e49db268\\\":true,\\\"5e2858aa12e72435f0c29f07\\\":true},\\\"trainingId\\\":\\\"5c6a6b858924f413706ea6d7\\\"}\",\n        \"title\": \"Best Practices for Project Management Success\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_create_assignment\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:08.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"members\\\":{},\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was assigned_an_assignment\",\n        \"userId\": \"5e119872ddc58a61e49db268\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:49:32.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706ea6d7\\\"}\",\n        \"title\": \"Best Practices for Project Management Success\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was assigned_an_assignment\",\n        \"userId\": \"5e2858aa12e72435f0c29f07\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:49:32.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706ea6d7\\\"}\",\n        \"title\": \"Best Practices for Project Management Success\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"61f7911a47991583c3811ed1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"61dfcf985070ca005d02a3b8\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63df858b68455421e3685ce7\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5f3393734e8bd90069dff795\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63b1b2b98be9f8523a8c926b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63b1b6ed388bdc52b3d1aa8b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"6180016c0ed527224c6673ea\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:39:51.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5ed4ee336d176a129c5b3f5d\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63b1b1b9824e83518b7404a4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5f4b57fd0facee5020c59bd8\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"639ae6f0e03b3158d51ed1af\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5fa10e5527dab5005e863c79\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:39:51.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5ed4ee336d176a129c5b3f5d\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e37d7bb3a196a817c1b6e6f\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5fa10e0b27dab5005e863c77\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"60f7c850d58b6f43889712bd\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e4e8815064c611cacab15b5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e11fb638c66e64c5042b25c\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63d62e42e9615f9f8ee4e5bd\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"6051c6e5bde16b00628e28e1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"606eb7344b9ee1419836c62e\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5fa10e2927dab5005e863c78\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:39:51.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5ed4ee336d176a129c5b3f5d\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e2858aa12e72435f0c29f07\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e119872ddc58a61e49db268\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63d0ff008b565d55ec9ac0b1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63d6445d308c3fa7ead9e6e6\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"615ac316236f0d00164721be\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T13:45:13.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:39:51.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5ed4ee336d176a129c5b3f5d\\\",\\\"trainingId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": null,\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e2858aa12e72435f0c29f07\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e119872ddc58a61e49db268\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e11fb638c66e64c5042b25c\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e37d7bb3a196a817c1b6e6f\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e4e8815064c611cacab15b5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5f3393734e8bd90069dff795\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5f4b57fd0facee5020c59bd8\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5fa10e0b27dab5005e863c77\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5fa10e2927dab5005e863c78\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"5fa10e5527dab5005e863c79\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"6051c6e5bde16b00628e28e1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"606eb7344b9ee1419836c62e\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"60f7c850d58b6f43889712bd\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"615ac316236f0d00164721be\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"61dfcf985070ca005d02a3b8\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"61f7911a47991583c3811ed1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"639ae6f0e03b3158d51ed1af\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63b1b1b9824e83518b7404a4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63b1b2b98be9f8523a8c926b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63b1b6ed388bdc52b3d1aa8b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63d0ff008b565d55ec9ac0b1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63d62e42e9615f9f8ee4e5bd\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63d6445d308c3fa7ead9e6e6\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63df858b68455421e3685ce7\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_was_assigned_an_assignment\",\n        \"userId\": \"63ea6d8440cb25ae1be6ff7a\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:58:03.000Z\"\n        },\n        \"metadata\": \"{\\\"groupId\\\":\\\"5e01b5253187c23e90cd2cac\\\",\\\"trainingId\\\":\\\"5c6a6b858924f413706eadb3\\\"}\",\n        \"title\": \"Project Management for Development\",\n        \"creator\": null,\n        \"type\": \"mooc\",\n        \"customRequest\": null,\n        \"provider\": \"edx\",\n        \"assignedBy\": \"5e01b5253187c23e90cd2cac\",\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T07:30:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"data_science\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T07:31:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"data_science\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T12:50:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T12:50:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T12:50:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"Python\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T13:06:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"management\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"new_search_external\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T21:24:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": \"java\",\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T06:03:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:00:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:08:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T10:08:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f72ba1edad4c4a75fcfa99\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T10:21:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T12:49:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T13:46:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T06:55:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:00:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:24:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T09:40:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T08:05:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-07T07:04:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-07T07:18:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-07T08:48:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-07T09:05:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T05:27:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T06:53:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T07:35:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T09:45:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T15:11:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"event with price should create request\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:17:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Event 5$\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T06:55:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Test audience \",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:06:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"audience 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T08:20:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T06:28:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T07:27:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:25:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:18:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f72ba1edad4c4a75fcfa99\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:23:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:09:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"ChatGPT\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:13:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"CI/CD\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:16:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Juno Backend\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:20:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Pull Requests\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_added_company_academy\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:22:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Testing\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-10T08:41:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T14:57:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"ilt\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T15:17:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:35:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T06:37:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T07:03:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T20:36:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T20:38:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T20:39:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T20:42:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T16:11:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T16:11:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T16:22:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T11:48:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"ללא כותרת\",\n        \"creator\": \"5ddf8f013af1e8212c72ec01\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T12:10:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"ללא כותרת\",\n        \"creator\": \"5ddf8f013af1e8212c72ec01\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T17:36:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:01:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T15:21:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T11:35:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T13:35:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T08:32:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T07:17:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T15:20:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T14:58:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T16:08:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T15:11:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T09:41:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Sans titre\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T13:06:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:01:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T06:57:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T15:40:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T08:09:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T06:50:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T06:11:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:29:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:10:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T17:37:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T13:38:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T07:04:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T13:38:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T07:47:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T11:22:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:16:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T15:42:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T09:33:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T11:54:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T06:11:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T11:46:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T10:32:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T06:18:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T09:35:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:45:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:03:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T11:23:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T16:30:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:29:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:36:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:28:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T13:05:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T07:03:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T14:32:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T10:40:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T08:17:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T15:41:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T12:41:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T07:13:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T06:08:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T10:19:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T16:02:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T09:01:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T16:46:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T09:13:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T08:31:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T10:06:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:27:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T10:11:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T10:07:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T12:43:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T14:00:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-11T18:55:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T12:07:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:46:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T10:44:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T08:00:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T08:14:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T10:23:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T09:53:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:54:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T07:11:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T12:28:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T08:04:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T07:31:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:56:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T09:17:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T09:16:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:38:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:50:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:36:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:33:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-08T11:55:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:16:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T13:39:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T13:30:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T13:37:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T13:35:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T12:28:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T05:24:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T12:50:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T13:01:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T06:45:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:05:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T12:18:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T07:46:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T07:57:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T08:02:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T14:42:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T10:08:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T05:39:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T05:42:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T05:55:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T06:10:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T11:01:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T11:12:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T11:19:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T10:17:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T10:38:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T07:36:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T15:58:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T07:06:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T08:03:27.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T08:22:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T20:40:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T07:33:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T08:00:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T08:01:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T08:16:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:17:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Course Reviews\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T11:03:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T10:28:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T10:39:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T08:58:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T09:37:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T10:17:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T08:40:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:43:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T08:32:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:38:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:29:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:45:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T07:03:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:18:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T10:59:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T08:40:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T07:21:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T09:24:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T16:01:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T16:01:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:42:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"sdsdsadsaddsd\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:47:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"adsfghj,k\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T09:54:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Scorm mapp\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T11:32:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"mapp 2\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:02:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T11:30:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"mapp\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T11:26:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"mapp\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61927427b118b50950c9da98\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T14:16:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61927427b118b50950c9da98\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T06:03:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T06:40:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:40:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:25:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T09:28:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:22:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T15:34:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61b70a151783e257bc85e33b\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-27T10:25:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61b70a151783e257bc85e33b\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T16:03:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:54:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:45:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"628ccf5680eab10b2a2505ab\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T15:45:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T15:45:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:42:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T11:25:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:02:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:46:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T18:21:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T13:11:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T13:41:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T14:17:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T15:06:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T15:54:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"60c0da07dc1c413a34c039e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T06:31:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T10:04:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T11:02:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T16:22:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:08:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:29:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T12:16:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T16:05:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T11:35:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T11:35:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:44:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:44:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:44:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:44:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:44:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:44:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:47:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:50:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:56:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T14:56:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:04:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:05:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:07:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:10:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:11:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:17:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:18:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:20:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:29:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:30:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:30:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:30:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:30:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:31:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:31:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T15:31:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T16:03:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T16:03:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:07:59.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:09:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:10:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:37:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:46:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T17:29:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T19:31:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-17T09:25:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-17T10:08:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T07:26:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T07:28:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Sans titre\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:23:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:37:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:41:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:25:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:40:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:40:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:25:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:27:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey (Copy)\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T09:17:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:56:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T07:14:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T08:05:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:07:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"webinar\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:15:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:22:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Installation - Material UI\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"article\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:12:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:32:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:09:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:06:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T06:54:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T07:47:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:01:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:04:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:17:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:49:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:49:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T07:13:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T12:24:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:03:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:04:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:06:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T08:34:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T08:34:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:04:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:26:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:48:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:50:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:42:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:09:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:09:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:31:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:34:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:35:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:38:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:40:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:42:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:43:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:43:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:44:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:42:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:52:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:01:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:01:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:24:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:25:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T13:59:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:19:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:28:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:31:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:32:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:34:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:37:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:42:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:43:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:53:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:55:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:44:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T10:30:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T09:12:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T13:18:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T12:35:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T13:03:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T09:05:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T14:43:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:28:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:32:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:33:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:39:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:40:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:45:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:47:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:47:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T08:02:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T08:08:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T08:09:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T08:26:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T08:28:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:33:08.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T13:22:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:42:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:46:30.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T07:50:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"62eb7f39d7d6040f315aa906\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T12:46:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T11:48:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:41:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:12:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:15:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T16:20:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T14:11:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T11:47:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T08:25:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:17:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:55:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T12:00:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:48:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T09:53:43.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T14:21:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T14:36:19.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:16:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:25:32.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:32:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:49:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"manager test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:50:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:56:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T16:25:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T16:54:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:13:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:37:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:47:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:51:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:57:33.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:18:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:33:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:56:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:31:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:47:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T08:33:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event type\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T17:27:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test event\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"webinar\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:16:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"event with manager approval and price\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:57:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventsdaf sdfa\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T12:03:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"waiting list\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T12:26:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T11:12:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventfsfsfs\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T13:01:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"testtt\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T12:36:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T10:14:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T10:25:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:36:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:37:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T10:00:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T14:00:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T15:10:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T15:37:22.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T15:42:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T16:16:07.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T17:04:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:55:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test webinar\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"webinar\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T07:52:28.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T07:52:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T08:27:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T09:12:38.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T09:17:56.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:14:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T11:16:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:54:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T13:55:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T14:28:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T14:30:31.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:33:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:56:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T14:29:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:52:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test leave event\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:38:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T10:13:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T07:03:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T07:03:46.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T16:16:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:11:15.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"my new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:15:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:15:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"new event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T13:25:40.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Event\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:10:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:11:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:17:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:22:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:22:25.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T12:22:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T07:43:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T04:59:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T08:53:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T09:16:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T11:52:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-28T13:06:04.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T10:33:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Eventg r\",\n        \"creator\": \"5ddf8f013af1e8212c72ec01\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T09:31:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Event test\",\n        \"creator\": \"5ddf8f013af1e8212c72ec01\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T12:31:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T12:33:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T09:26:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T13:49:51.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test price\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T15:12:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"faf sssss\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"ilt\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T08:10:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T08:10:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T08:12:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T08:17:50.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T08:18:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T14:56:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T16:49:02.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T07:23:35.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T08:04:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T09:10:12.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"test 123\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T12:41:42.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T12:45:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T13:46:11.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T12:24:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"628cd72880eab100152510d7\\\"}\",\n        \"title\": \"First Test Article\",\n        \"creator\": \"628ccf5680eab10b2a2505ab\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5f97c5b96db3070065fdbce8\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:47:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d6862a1816e195a3ae0ed6\\\"}\",\n        \"title\": \"3 short sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1204\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:55:25.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d686451816e195a3ae0f8b\\\"}\",\n        \"title\": \"long sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"424058\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T08:36:32.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d780bfb76be80d113864f5\\\"}\",\n        \"title\": \"Untitlesdf sdfd\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"56247\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:19:58.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb5bea252e31ad778988e\\\"}\",\n        \"title\": \"Untitlsadf sdfsdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1055\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:19:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb589a252e31ad7789816\\\"}\",\n        \"title\": \"Untitlsfd sadfasdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"3125\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:01:20.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d6a34d3521fd74f2260ff8\\\"}\",\n        \"title\": \"dfsgfg sdfgdfg\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"51127417\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T10:43:16.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb589a252e31ad7789816\\\"}\",\n        \"title\": \"Untitlsfd sadfasdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"889\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T15:01:32.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d689271816e195a3ae18fd\\\"}\",\n        \"title\": \"drshfgj,n.\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"255893\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T15:42:08.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63badf7a4d1091c5fbafec45\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"14996\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:03:19.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63baf6eea2dd24a12b97346e\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"54112\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:39:18.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cffb705de397112db64378\\\"}\",\n        \"title\": \"asdf asdf sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1331\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T07:08:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63dfe925ff2f7dd588e7a6bf\\\"}\",\n        \"title\": \"random\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"46312089\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T13:13:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91216e67c56a82541ce1a\\\"}\",\n        \"title\": \"ds fasdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"381224\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T13:56:27.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91d41e67c56a82541dd18\\\"}\",\n        \"title\": \"dsfgdsfg\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"7119\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:39:32.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cffb885de397112db6449b\\\"}\",\n        \"title\": \"sd fsdfasfdsa\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"757\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T14:42:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91d7be67c56a82541de92\\\"}\",\n        \"title\": \"safd sdfsadf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1525\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T12:28:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb5bea252e31ad778988e\\\"}\",\n        \"title\": \"Untitlsadf sdfsdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1002817\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T10:18:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d101df8d6e8b0077cf9811\\\"}\",\n        \"title\": \"Unsdf asdfsdfsdfs fdsfsdtitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"958\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T06:55:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ce2e197624c93cacc21304\\\"}\",\n        \"title\": \"test events\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"55167\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T07:28:17.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"13698\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:13:01.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b0891828fa5f0465a08b00\\\"}\",\n        \"title\": \"for faf 2023\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"81010\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:13:10.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"633dc57988dbad42944942ff\\\"}\",\n        \"title\": \"second training\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"6128\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T07:07:25.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ce3180fef0503e74a88a1b\\\"}\",\n        \"title\": \"test event 3\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"41086\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T11:35:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8fca0c106d958ac8c68ef\\\"}\",\n        \"title\": \"דגגדכ\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1248\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:18:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8eaeac106d958ac8c6059\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1026\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:26:27.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"61541380ed41410016724144\\\"}\",\n        \"title\": \"product management\",\n        \"creator\": \"5e32a7f8fc46e45f009ca5f2\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1219\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:26:11.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"6154133eed41410016724130\\\"}\",\n        \"title\": \"Project management\",\n        \"creator\": \"5e32a7f8fc46e45f009ca5f2\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1210\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:27:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"623ff8b773404268d2456a33\\\"}\",\n        \"title\": \"11\",\n        \"creator\": \"5e4a7c8d03918f0814d33823\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1272\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T06:52:35.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e24a448a0df809d9a18e93\\\"}\",\n        \"title\": \"Section #2\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T06:52:38.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e24cea8a0df809d9a18e96\\\"}\",\n        \"title\": \"Section #3\",\n        \"creator\": \"6388627f3ae4fa0008632a0d\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T17:49:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d85fe67c56a82541a9ed\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T14:43:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122be67c56a82541ceac\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:45:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d897e67c56a82541aad5\\\"}\",\n        \"title\": \"quiz 2\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T07:37:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63dfe925ff2f7dd588e7a6b7\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T10:06:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e0c75876501149a718ae1d\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T17:30:23.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d943c8e67c56a825420c98\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T17:25:59.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d94590e67c56a8254211d3\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T14:43:35.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91d41e67c56a82541dd13\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T07:28:56.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e3a5d531141c2032b5aef0\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:19:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8eaeac106d958ac8c6054\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:17:34.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d84de67c56a82541a9d2\\\"}\",\n        \"title\": \"test quiz\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2164961\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:39:34.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cffb675de397112db64363\\\"}\",\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T12:34:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb57ca252e31ad77897fc\\\"}\",\n        \"title\": \"sdxzcvsDF AEF\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"288366\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T10:18:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d101bb8d6e8b0077cf97d1\\\"}\",\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"0\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:20:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb57ca252e31ad77897fc\\\"}\",\n        \"title\": \"sdxzcvsDF AEF\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"19864\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:16:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d898e67c56a82541aada\\\"}\",\n        \"title\": \"q\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1912269\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:45:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d898e67c56a82541aada\\\"}\",\n        \"title\": \"q\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"29343\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T08:43:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d63129762fc348afc2f6ae\\\"}\",\n        \"title\": \"quiz 1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"57787\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T10:05:30.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e0c75876501149a718ae25\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"4847\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T16:44:37.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d943c8e67c56a825420c9d\\\"}\",\n        \"title\": \"dsf dsa\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"152694\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:43:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d85fe67c56a82541a9f2\\\"}\",\n        \"title\": \"quiz 1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"429261\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T17:25:56.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d94590e67c56a8254211d8\\\"}\",\n        \"title\": \"adsfghn\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2376551\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:04:00.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fc89b9e075634005607d\\\"}\",\n        \"title\": \"scorm test\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"36528\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:04:00.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fc89b9e075634005607d\\\"}\",\n        \"title\": \"scorm test\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"36527\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T12:00:44.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb5b9a252e31ad7789875\\\"}\",\n        \"title\": \"df sdfasdfasdfsadfsdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"task\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:19:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb5b9a252e31ad7789875\\\"}\",\n        \"title\": \"df sdfasdfasdfsadfsdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"task\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T11:37:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8fd83c106d958ac8c6a55\\\"}\",\n        \"title\": \"sdfcsda\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"task\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T11:36:02.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8fd0dc106d958ac8c69aa\\\"}\",\n        \"title\": \"4654\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"task\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T14:30:01.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fd24e0017b00099f06d4\\\"}\",\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1744059162\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T14:30:01.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fd24e0017b00099f06d4\\\"}\",\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1744059161\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T15:07:18.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"collaboration test\\n\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"7905\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T12:30:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"testing locking element\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1580\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:06:41.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"5501\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:40:32.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"97578\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:02:07.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"9485\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T13:54:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122ce67c56a82541ceb1\\\"}\",\n        \"title\": \"dsfa sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2428119\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T15:13:33.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122ce67c56a82541ceb1\\\"}\",\n        \"title\": \"dsfa sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"7169714\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T14:44:08.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122ce67c56a82541ceb1\\\"}\",\n        \"title\": \"dsfa sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"5404514\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T15:10:44.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122ce67c56a82541ceb1\\\"}\",\n        \"title\": \"dsfa sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"7001054\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T15:55:44.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122ce67c56a82541ceb1\\\"}\",\n        \"title\": \"dsfa sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"9700597\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:23:27.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"633dc57988dbad42944942ff\\\"}\",\n        \"title\": \"second training\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1161\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:20:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63a875cfba5aa70007ec7ca9\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"6180016c0ed527224c6673ea\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"77871\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:23:07.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b0891828fa5f0465a08b00\\\"}\",\n        \"title\": \"for faf 2023\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1016\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:17:55.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"6168\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:15:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63dfe925ff2f7dd588e7a6bf\\\"}\",\n        \"title\": \"random\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"14105\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:15:18.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ea0c1ea01134339d3a08fe\\\"}\",\n        \"title\": \"3 sections\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"16347\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T12:04:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ea1829febc3000085bf01e\\\"}\",\n        \"title\": \"test Journey cer\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"8878\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T12:04:40.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ea184efebc3000085bf041\\\"}\",\n        \"title\": \"step1\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"4214\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T10:05:14.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63edff9580c21002c84148f2\\\"}\",\n        \"title\": \"Section #1\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T10:04:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63edff9680c21002c84148fa\\\"}\",\n        \"title\": \"test question\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"7640\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:36:32.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f1ed8dd92874b7fcc07b64\\\"}\",\n        \"title\": \"sdafg dsf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"878\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:38:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f2423ebb6a2e4aa7edcaf2\\\"}\",\n        \"title\": \"sadf dsaf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2164\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:41:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f24312bb6a2e4aa7edd136\\\"}\",\n        \"title\": \"גד כש דג\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2419\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f48758b0f3365378a6d393\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:57:11.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f4872db0f3365378a6d311\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2158\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f487b0b0f3365378a6d64f\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T09:00:08.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f4872db0f3365378a6d311\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"98266\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T09:20:16.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f2423ebb6a2e4aa7edcaf2\\\"}\",\n        \"title\": \"sadf dsaf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2934\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:39:35.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63edff9680c21002c84148fa\\\"}\",\n        \"title\": \"test question\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"4494\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T09:20:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"collaboration test\\n\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"5122\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:35:25.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"615d6343686f8c44cc53e773\\\"}\",\n        \"title\": \"Hello aohfouas fhuoa peijqw piej qwpie jqipw e111\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:52:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f5dd924f31d6424c303746\\\"}\",\n        \"title\": \"Untitledasdfdsfds\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2456\",\n        \"tags\": \"{\\\"63f5e2ed4f31d6424c303ce5\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:52:38.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f639b2e5a44a0be5e7782f\\\"}\",\n        \"title\": \"journey test\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:52:00.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f639bbe5a44a0be5e7784c\\\"}\",\n        \"title\": \"step 1\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2862\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T07:32:25.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f716404f31d6424c307320\\\"}\",\n        \"title\": \"Untitled Blog Post\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"module\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:04:56.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f72a7d4f31d6424c308360\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2395\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T10:07:12.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f7394e4f31d6424c308dea\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"926\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T16:00:35.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f7282b4f31d6424c308079\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1047\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:13:40.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"60fe64e043d2550015b06dc7\\\"}\",\n        \"title\": \"Klil rules!\",\n        \"creator\": \"5e32a7f8fc46e45f009ca5f2\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5c5aba838924f432d19dfbe8\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:19:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb5bea252e31ad778988e\\\"}\",\n        \"title\": \"Untitlsadf sdfsdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T08:35:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d780bfb76be80d113864f5\\\"}\",\n        \"title\": \"Untitlesdf sdfd\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T17:02:24.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63baf6eea2dd24a12b97346e\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T10:43:15.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb589a252e31ad7789816\\\"}\",\n        \"title\": \"Untitlsfd sadfasdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T13:56:20.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91d41e67c56a82541dd18\\\"}\",\n        \"title\": \"dsfgdsfg\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T10:18:42.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d101df8d6e8b0077cf9811\\\"}\",\n        \"title\": \"Unsdf asdfsdfsdfs fdsfsdtitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:47:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d6862a1816e195a3ae0ed6\\\"}\",\n        \"title\": \"3 short sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T13:19:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cfb589a252e31ad7789816\\\"}\",\n        \"title\": \"Untitlsfd sadfasdfed\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T15:41:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63badf7a4d1091c5fbafec45\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:57:16.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d689271816e195a3ae18fd\\\"}\",\n        \"title\": \"drshfgj,n.\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:39:17.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cffb705de397112db64378\\\"}\",\n        \"title\": \"asdf asdf sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:48:21.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d686451816e195a3ae0f8b\\\"}\",\n        \"title\": \"long sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T13:06:44.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91216e67c56a82541ce1a\\\"}\",\n        \"title\": \"ds fasdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T16:49:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d6a34d3521fd74f2260ff8\\\"}\",\n        \"title\": \"dfsgfg sdfgdfg\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T18:16:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63dfe925ff2f7dd588e7a6bf\\\"}\",\n        \"title\": \"random\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:39:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cffb885de397112db6449b\\\"}\",\n        \"title\": \"sd fsdfasfdsa\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T14:42:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d91d7be67c56a82541de92\\\"}\",\n        \"title\": \"safd sdfsadf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T06:54:50.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ce2e197624c93cacc21304\\\"}\",\n        \"title\": \"test events\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T10:52:19.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b0891828fa5f0465a08b00\\\"}\",\n        \"title\": \"for faf 2023\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T07:28:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e3a5d531141c2032b5aef8\\\"}\",\n        \"title\": \"Assignment\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T07:06:44.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ce3180fef0503e74a88a1b\\\"}\",\n        \"title\": \"test event 3\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:13:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"633dc57988dbad42944942ff\\\"}\",\n        \"title\": \"second training\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:11:40.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b0891828fa5f0465a08b00\\\"}\",\n        \"title\": \"for faf 2023\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T06:59:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ce2fd87715f93daec2eb7d\\\"}\",\n        \"title\": \"test events 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T10:18:46.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8eaeac106d958ac8c6059\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T11:35:56.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8fca0c106d958ac8c68ef\\\"}\",\n        \"title\": \"דגגדכ\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T10:58:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"62f95bee26dcd5818aebfd86\\\"}\",\n        \"title\": \"test share\",\n        \"creator\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:26:09.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"6154133eed41410016724130\\\"}\",\n        \"title\": \"Project management\",\n        \"creator\": \"5e32a7f8fc46e45f009ca5f2\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:26:26.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"61541380ed41410016724144\\\"}\",\n        \"title\": \"product management\",\n        \"creator\": \"5e32a7f8fc46e45f009ca5f2\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T11:27:51.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"623ff8b773404268d2456a33\\\"}\",\n        \"title\": \"11\",\n        \"creator\": \"5e4a7c8d03918f0814d33823\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T10:53:42.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63a875cfba5aa70007ec7ca9\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"6180016c0ed527224c6673ea\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-13T10:11:01.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ea0c1ea01134339d3a08fe\\\"}\",\n        \"title\": \"3 sections\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:46:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ccdb787b722eff666133d4\\\"}\",\n        \"title\": \"testtt\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T08:44:34.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d631b5762fc348afc2f8b7\\\"}\",\n        \"title\": \"quiz 2\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T16:42:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d943c8e67c56a825420c9d\\\"}\",\n        \"title\": \"dsf dsa\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:44:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d898e67c56a82541aada\\\"}\",\n        \"title\": \"q\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T10:05:25.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e0c75876501149a718ae25\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T08:42:24.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d63129762fc348afc2f6ae\\\"}\",\n        \"title\": \"quiz 1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T07:59:28.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bbc05ca2dd24a12b9740b4\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T16:46:20.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d94590e67c56a8254211d8\\\"}\",\n        \"title\": \"adsfghn\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T09:36:38.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d8d85fe67c56a82541a9f2\\\"}\",\n        \"title\": \"quiz 1\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:46:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ccdb897b722eff666133ef\\\"}\",\n        \"title\": \"quiz 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:43:06.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c7b0ff5499320008d030d2\\\"}\",\n        \"title\": \"sdsdsadsaddsd\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T11:31:00.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63da4c6ac106d958ac8c71ee\\\"}\",\n        \"title\": \"mapp\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T11:30:42.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63da4d593530f300095741f5\\\"}\",\n        \"title\": \"mapp\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:28:09.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fc89b9e075634005607d\\\"}\",\n        \"title\": \"scorm test\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-01T11:32:55.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63da4dbf3530f30009574253\\\"}\",\n        \"title\": \"mapp 2\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:03:23.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fc89b9e075634005607d\\\"}\",\n        \"title\": \"scorm test\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T09:55:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63db88698b24a10009eacfab\\\"}\",\n        \"title\": \"Scorm mapp\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T14:36:58.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fd24e0017b00099f06d4\\\"}\",\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T14:29:46.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fd24e0017b00099f06d4\\\"}\",\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-23T14:29:44.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fd24e0017b00099f06d4\\\"}\",\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1b25f76923dc0017b36bfe\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-03T10:02:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b3fd24e0017b00099f06d4\\\"}\",\n        \"title\": \"test - scorm\",\n        \"creator\": \"5e1b25f76923dc0017b36bfe\",\n        \"type\": \"scorm\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-02T15:07:10.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"collaboration test\\n\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T10:43:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"collaboration test\\n\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-25T12:30:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"testing locking element\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:01:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T14:38:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-29T11:06:35.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-31T13:14:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d9122ce67c56a82541ceb1\\\"}\",\n        \"title\": \"dsfa sdf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:23:26.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"633dc57988dbad42944942ff\\\"}\",\n        \"title\": \"second training\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:23:15.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63a2dd44cfde8000088a193d\\\"}\",\n        \"title\": \"pusher\",\n        \"creator\": \"6180016c0ed527224c6673ea\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:18:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63a875cfba5aa70007ec7ca9\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"6180016c0ed527224c6673ea\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:23:06.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b0891828fa5f0465a08b00\\\"}\",\n        \"title\": \"for faf 2023\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:17:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63d651eeb24d0aae24fc0459\\\"}\",\n        \"title\": \"microsoft test\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:15:34.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63dfe925ff2f7dd588e7a6bf\\\"}\",\n        \"title\": \"random\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T09:15:02.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ea0c1ea01134339d3a08fe\\\"}\",\n        \"title\": \"3 sections\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T12:04:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ea184efebc3000085bf041\\\"}\",\n        \"title\": \"step1\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T13:15:11.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"collaboration test\\n\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"61d7115d2d12df0061991365\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T10:04:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63edff9680c21002c84148fa\\\"}\",\n        \"title\": \"test question\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T13:17:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63edff9680c21002c84148fa\\\"}\",\n        \"title\": \"test question\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:36:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f1ed8dd92874b7fcc07b64\\\"}\",\n        \"title\": \"sdafg dsf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T09:24:23.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f1eaa2d92874b7fcc07a9e\\\"}\",\n        \"title\": \"Untitled Journey\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:38:11.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f2423ebb6a2e4aa7edcaf2\\\"}\",\n        \"title\": \"sadf dsaf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:41:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f24312bb6a2e4aa7edd136\\\"}\",\n        \"title\": \"גד כש דג\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f48758b0f3365378a6d393\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:57:09.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f4872db0f3365378a6d311\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f487b0b0f3365378a6d64f\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:58:30.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f4872db0f3365378a6d311\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T09:20:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f2423ebb6a2e4aa7edcaf2\\\"}\",\n        \"title\": \"sadf dsaf\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T14:00:50.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5e1c6f9682968078209d21d7\\\"}\",\n        \"title\": \"!יום כיף, מפעל במבה אסם\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"606c1e8d8eb0023da487f381\\\":1,\\\"619cbe44156ba3edfbb33819\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-19T15:39:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63edff9680c21002c84148fa\\\"}\",\n        \"title\": \"test question\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T09:20:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c55ee573d8553684da26d2\\\"}\",\n        \"title\": \"collaboration test\\n\",\n        \"creator\": \"61d7115d2d12df0061991365\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T13:52:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f5dd924f31d6424c303746\\\"}\",\n        \"title\": \"Untitledasdfdsfds\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"63f5e2ed4f31d6424c303ce5\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:51:57.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f639bbe5a44a0be5e7784c\\\"}\",\n        \"title\": \"step 1\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:04:53.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f72a7d4f31d6424c308360\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T16:01:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f63a5fe5a44a0be5e77a51\\\"}\",\n        \"title\": \"STEP 2\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T16:01:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f63ab1e5a44a0be5e77bdf\\\"}\",\n        \"title\": \"STEP 3\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T10:07:11.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f7394e4f31d6424c308dea\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T16:00:34.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f7282b4f31d6424c308079\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T07:12:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"6347a210f696d906c57d815e\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"7608773224\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T06:06:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e1e9b3f1969c661f0d9033\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"22602\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T09:32:28.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bfd2cb53394f6464c2b68b\\\"}\",\n        \"title\": \"test survey link\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"3868\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:24:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b08bf7e26089050c23a615\\\"}\",\n        \"title\": \"test survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"13149\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"63cd4809932c6e224fee56da\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:28:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cd475e932c6e224fee55bb\\\"}\",\n        \"title\": \"Public Survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"17664\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:48:01.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bd6bed7db2c2e556c4f4e0\\\"}\",\n        \"title\": \"test1111111\",\n        \"creator\": \"628ccf5680eab10b2a2505ab\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"11360\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:43:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ebe417b79f03f9c02e0bb4\\\"}\",\n        \"title\": \"test sur\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"4477\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:45:26.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ebe417b79f03f9c02e0bb4\\\"}\",\n        \"title\": \"test sur\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"14051\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"63cd4709932c6e224fee537c\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:24:23.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"9867\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:41:48.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"Anonymous survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"4422\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:21:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"17922\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:59:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"8716\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:35:26.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"226516095\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:03:28.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec836d33794913b218a204\\\"}\",\n        \"title\": \"test sur 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"11319\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:15:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec836d33794913b218a204\\\"}\",\n        \"title\": \"test sur 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"13698\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:06:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec836d33794913b218a204\\\"}\",\n        \"title\": \"test sur 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"10530\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-07T06:06:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63e1e9b3f1969c661f0d9033\\\"}\",\n        \"title\": \"test\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T07:12:39.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"6347a210f696d906c57d815e\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T07:12:40.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"6347a210f696d906c57d815e\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-31T19:23:52.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63b08bf7e26089050c23a615\\\"}\",\n        \"title\": \"test survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4809932c6e224fee56da\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:28:29.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cd475e932c6e224fee55bb\\\"}\",\n        \"title\": \"Public Survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4809932c6e224fee56da\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:28:29.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63cd475e932c6e224fee55bb\\\"}\",\n        \"title\": \"Public Survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T09:32:24.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bfd2cb53394f6464c2b68b\\\"}\",\n        \"title\": \"test survey link\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:47:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bd6bed7db2c2e556c4f4e0\\\"}\",\n        \"title\": \"test1111111\",\n        \"creator\": \"628ccf5680eab10b2a2505ab\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"628ccf5680eab10b2a2505ab\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-10T13:47:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63bd6bed7db2c2e556c4f4e0\\\"}\",\n        \"title\": \"test1111111\",\n        \"creator\": \"628ccf5680eab10b2a2505ab\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:43:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ebe417b79f03f9c02e0bb4\\\"}\",\n        \"title\": \"test sur\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-14T19:45:12.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ebe417b79f03f9c02e0bb4\\\"}\",\n        \"title\": \"test sur\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:23:03.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T11:07:34.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T11:07:35.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:40:20.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-17T11:01:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:23:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:40:19.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c51fef605d24e6b0e4440f\\\"}\",\n        \"title\": \"Naphtali's survey 2\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:22:16.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4709932c6e224fee537c\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:24:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:22:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:23:28.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:20:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T14:41:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"Anonymous survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:22:16.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4709932c6e224fee537c\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:24:13.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:20:45.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:22:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63cd4638932c6e224fee4f91\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T14:23:28.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c561f38293effee56a169d\\\"}\",\n        \"title\": \"A survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:35:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:35:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:35:21.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:58:55.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:32:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T15:40:10.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:32:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:35:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T06:44:58.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-19T15:40:10.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63c962f8dff46a9ec80ae1ae\\\"}\",\n        \"title\": \"survey\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:03:17.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec836d33794913b218a204\\\"}\",\n        \"title\": \"test sur 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:15:31.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec836d33794913b218a204\\\"}\",\n        \"title\": \"test sur 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-15T07:47:09.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec8dd133794913b218b520\\\"}\",\n        \"title\": \"123123\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T07:06:39.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63ec836d33794913b218a204\\\"}\",\n        \"title\": \"test sur 1\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T15:03:10.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f60564fe1b198006cedbb42\\\"}\",\n        \"title\": \"jordans learning\",\n        \"creator\": \"5f604754e1b198006cedbb3d\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"5770455\",\n        \"tags\": \"{\\\"5c5aba838924f432d19dfa4d\\\":\\\"skills\\\"}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-24T13:27:00.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5f60564fe1b198006cedbb42\\\"}\",\n        \"title\": \"jordans learning\",\n        \"creator\": \"5f604754e1b198006cedbb3d\",\n        \"type\": \"path\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5c5aba838924f432d19dfa4d\\\":\\\"skills\\\"}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T08:06:33.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f63b3c4f31d6424c30527e\\\"}\",\n        \"title\": \"afdgffh\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"617803e3cc40f91ad40b1493\\\":1,\\\"6189019910bad50016891b7e\\\":1,\\\"618ba2c8544e2000166a4fb7\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"survey_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T08:07:08.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f63b3c4f31d6424c30527e\\\"}\",\n        \"title\": \"afdgffh\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"survey\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"35137\",\n        \"tags\": \"{\\\"617803e3cc40f91ad40b1493\\\":1,\\\"6189019910bad50016891b7e\\\":1,\\\"618ba2c8544e2000166a4fb7\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:39:36.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb78192d275946b8d7479b\\\"}\",\n        \"title\": \"test share\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5c5aba838924f432d19df998\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"617803e3cc40f91ad40b1493\\\":1,\\\"63fb78012d275946b8d7475f\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T15:39:37.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb78192d275946b8d7479b\\\"}\",\n        \"title\": \"test share\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"1235\",\n        \"tags\": \"{\\\"5c5aba838924f432d19df998\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"617803e3cc40f91ad40b1493\\\":1,\\\"63fb78012d275946b8d7475f\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:41:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fc6c1a8118294e54ce2fb1\\\"}\",\n        \"title\": \"test test\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"884\",\n        \"tags\": \"{\\\"606c1e8d8eb0023da487f381\\\":1,\\\"615546e3321a0013f899642d\\\":1,\\\"63fc6c2b8118294e54ce2fe1\\\":1,\\\"63fc6c2e8118294e54ce2fe8\\\":1,\\\"63fc6c308118294e54ce2ff0\\\":1,\\\"63fc6c338118294e54ce2ff8\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T08:41:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fc6c1a8118294e54ce2fb1\\\"}\",\n        \"title\": \"test test\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"606c1e8d8eb0023da487f381\\\":1,\\\"615546e3321a0013f899642d\\\":1,\\\"63fc6c2b8118294e54ce2fe1\\\":1,\\\"63fc6c2e8118294e54ce2fe8\\\":1,\\\"63fc6c308118294e54ce2ff0\\\":1,\\\"63fc6c338118294e54ce2ff8\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:13:47.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb73832d275946b8d741ad\\\"}\",\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"5f97c5b96db3070065fdbce8\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"606ef8804b9ee1419836c68c\\\":1,\\\"615546e3321a0013f899642d\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T14:13:49.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb73832d275946b8d741ad\\\"}\",\n        \"title\": \"NOC & TSE\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2539\",\n        \"tags\": \"{\\\"5f97c5b96db3070065fdbce8\\\":1,\\\"606c1e8d8eb0023da487f381\\\":1,\\\"606ef8804b9ee1419836c68c\\\":1,\\\"615546e3321a0013f899642d\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T04:58:41.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"5e1c6f9682968078209d21d7\\\"}\",\n        \"title\": \"!יום כיף, מפעל במבה אסם\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"{\\\"606c1e8d8eb0023da487f381\\\":1,\\\"619cbe44156ba3edfbb33819\\\":1}\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T05:09:46.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fedba168a85e3cc1863a5f\\\"}\",\n        \"title\": \"test 2 sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T04:57:14.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f720424f31d6424c307a52\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T04:57:54.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f639bbe5a44a0be5e7784c\\\"}\",\n        \"title\": \"step 1\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T05:46:04.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fedba168a85e3cc1863a5f\\\"}\",\n        \"title\": \"test 2 sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"2178231\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"6388627f3ae4fa0008632a0d\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T13:41:43.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63f720424f31d6424c307a52\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T15:11:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"event with price should create request\",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:17:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Event 5$\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"event\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T06:53:47.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:05:45.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:36:57.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T13:15:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T13:49:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T13:27:54.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T13:36:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-07T07:06:01.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T13:38:10.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T08:59:53.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T14:39:14.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:00:51.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb3f8f1cd3432060232dc4\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T10:03:22.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb2286b0589556c0f1f492\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T08:40:03.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T09:02:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T08:22:29.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-08T09:02:21.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"quiz\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:18:49.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:21:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:50:39.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:52:05.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:53:58.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:54:18.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:56:09.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T09:57:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T06:45:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:11:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:19:34.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:24:41.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:25:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:33:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T14:40:48.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T07:43:13.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T08:08:26.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_completed\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T07:51:37.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"64098e1116e78002bcacfd21\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": \"4190\",\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T07:51:33.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"64098e1116e78002bcacfd21\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T08:04:24.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"64098e1116e78002bcacfd21\\\"}\",\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T17:08:55.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fb3f8f1cd3432060232dc4\\\"}\",\n        \"title\": \"&\",\n        \"creator\": \"63f3aa45002af0e776adede9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T17:09:30.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"63fedba168a85e3cc1863a5f\\\"}\",\n        \"title\": \"test 2 sections \",\n        \"creator\": \"5e00e6a65e2da92f10200bde\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T17:11:20.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"64058dfb9273d1468a35da28\\\"}\",\n        \"title\": \"Test audience \",\n        \"creator\": \"5e01b5253187c23e90cd2cac\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T17:19:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T17:39:44.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T18:19:17.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63ec6dc687241031a5b2e7e9\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:10:55.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:12:24.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:13:16.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:15:37.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:17:36.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:20:20.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:30:41.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"640a30d04f8761ed8b343b9f\\\"}\",\n        \"title\": \"Pull Requests\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:30:58.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"640a31744f8761ed8b343dc2\\\"}\",\n        \"title\": \"Testing\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"internal_content_started\",\n        \"userId\": \"621c9a26525e0400612df8e5\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-09T19:31:05.000Z\"\n        },\n        \"metadata\": \"{\\\"unitId\\\":\\\"640a30594f8761ed8b343ac1\\\"}\",\n        \"title\": \"Juno Backend\",\n        \"creator\": \"621c9a26525e0400612df8e5\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"content_created\",\n        \"userId\": \"63f5c973e5a44a0be5e739b4\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-10T08:42:00.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": \"Untitled\",\n        \"creator\": \"63f5c973e5a44a0be5e739b4\",\n        \"type\": \"learning\",\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": \"null\",\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T14:08:18.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c0a28b1894e14f98729779\\\",\\\"requestId\\\":\\\"639b2a521f0ff7012f8c08c2\\\"}\",\n        \"title\": \"testtt tt  t\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2022-12-15T14:52:05.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61dd631075acd131e8c75f3d\\\",\\\"requestId\\\":\\\"639b3495e5ac3c05c28cd519\\\"}\",\n        \"title\": \"ffdfdfdf\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"Akteos\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T13:23:01.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63b2dab5d2aa8806ca9cfead\\\"}\",\n        \"title\": \"testttt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T13:25:23.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63b2db432fa322073f39a5d2\\\"}\",\n        \"title\": \"12212122\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T13:27:04.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63b2dba8d2d05c0753ab382d\\\"}\",\n        \"title\": \"123123\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T15:34:40.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63b2f99069991d0ffc447b1f\\\"}\",\n        \"title\": \"8888\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-02T15:34:57.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63b2f9a169991d0ffc447b49\\\"}\",\n        \"title\": \"12\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-04T10:39:29.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62d54e65364dc96a871445d9\\\",\\\"requestId\\\":\\\"63b55761f608ef6b4938fae4\\\"}\",\n        \"title\": \"ttttt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-08T16:20:02.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62d54e65364dc96a871445d9\\\",\\\"requestId\\\":\\\"63baed35ac41579f043e29d0\\\"}\",\n        \"title\": \"kjhg\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T05:48:25.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63bbaaa9ac41579f043e34e5\\\"}\",\n        \"title\": \"aaa\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T06:02:34.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63bbadfa5aa8c8afb7235c2b\\\"}\",\n        \"title\": \"asas\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T06:07:09.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63bbaf0d4c4e8daffbd7fcef\\\"}\",\n        \"title\": \"teet\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-09T06:11:13.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63bbb0012fbb62b03cdcd5e6\\\"}\",\n        \"title\": \"teet\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T06:41:09.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63bfab85412dd45468257c16\\\"}\",\n        \"title\": \"tet\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T07:06:40.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63b2da8fd2aa8806ca9cfdd6\\\",\\\"requestId\\\":\\\"63bfb1803574355a972ca633\\\"}\",\n        \"title\": \"tet\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-12T08:58:49.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61dd631075acd131e8c75f3d\\\",\\\"requestId\\\":\\\"63bfcbc953394f6464c2b226\\\"}\",\n        \"title\": \"rere\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T05:58:06.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63159c7c991a74191b58c24f\\\",\\\"requestId\\\":\\\"63c4e76ea238ddd02a929ab9\\\"}\",\n        \"title\": \"dwfw\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T06:03:26.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c4e89ba238ddd02a929c29\\\",\\\"requestId\\\":\\\"63c4e8aea238ddd02a929c41\\\"}\",\n        \"title\": \"fdfd\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T06:04:52.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c4e89ba238ddd02a929c29\\\",\\\"requestId\\\":\\\"63c4e904a238ddd02a929d2a\\\"}\",\n        \"title\": \"ttttt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-16T06:05:41.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c4e89ba238ddd02a929c29\\\",\\\"requestId\\\":\\\"63c4e935a238ddd02a929ded\\\"}\",\n        \"title\": \"rrrr\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T08:43:57.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c7b0f7e58bf6850dca5f9d\\\",\\\"requestId\\\":\\\"63c7b14de58bf6850dca6010\\\"}\",\n        \"title\": \"fsdfs\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-18T14:11:43.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62b001cbdc74ab3aa0f1da0e\\\",\\\"requestId\\\":\\\"63c7fe1f281adb2f1e353f39\\\"}\",\n        \"title\": \"rrrrr\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-22T13:15:26.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63a155ed7534ec91974670ac\\\",\\\"requestId\\\":\\\"63cd36ee0617d11ca533b637\\\"}\",\n        \"title\": \"ewewe\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:24:17.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c7b0f7e58bf6850dca5f9d\\\",\\\"requestId\\\":\\\"63d770a1168811de5b5ed1a0\\\"}\",\n        \"title\": \"bdg\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:25:20.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63d770e0168811de5b5ed1c8\\\"}\",\n        \"title\": \"fdfd\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-06T15:35:00.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63e11e08416fb28cb18de5da\\\",\\\"requestId\\\":\\\"63e11e24416fb28cb18de5fd\\\"}\",\n        \"title\": \"testttt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-12T13:15:06.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c7b0f7e58bf6850dca5f9d\\\",\\\"requestId\\\":\\\"63e8e65ae7113f4f387df564\\\"}\",\n        \"title\": \"test\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T07:10:25.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6345bfd7dc77a2749f05cfe4\\\",\\\"requestId\\\":\\\"63f46e61d045d3750aa52b85\\\"}\",\n        \"title\": \"asaf test cancel\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:35:45.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6345bfd7dc77a2749f05cfe4\\\",\\\"requestId\\\":\\\"63f4826147820089402f5b2d\\\"}\",\n        \"title\": \"dulman test 1\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T08:45:03.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6345bfd7dc77a2749f05cfe4\\\",\\\"requestId\\\":\\\"63f4848fa2233b8c4ee12020\\\"}\",\n        \"title\": \"dulman test 2\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"Akteos\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T09:00:23.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6345bfd7dc77a2749f05cfe4\\\",\\\"requestId\\\":\\\"63f48827d9795d8e7a180520\\\"}\",\n        \"title\": \"dulman test 3\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T07:23:54.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62eb7f39d7d60433795aa90b\\\",\\\"requestId\\\":\\\"63f4718a3523d27f251cb767\\\"}\",\n        \"title\": \"dulman test req\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-21T14:55:58.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62d54e65364dc96a871445d9\\\",\\\"requestId\\\":\\\"63f4db7ef5565c340b890eaa\\\"}\",\n        \"title\": \"sfsf\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T11:13:47.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"63fc906be7927b20055a74cc\\\"}\",\n        \"title\": \"test\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T11:14:22.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"63fc908ee7927b20055a7591\\\"}\",\n        \"title\": \"t\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T11:15:24.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62b001cbdc74ab3aa0f1da0e\\\",\\\"requestId\\\":\\\"63fc90cce7927b20055a7609\\\"}\",\n        \"title\": \"rr\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-27T11:15:24.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62b001cbdc74ab3aa0f1da0e\\\",\\\"requestId\\\":\\\"63fc90cce7927b20055a760e\\\"}\",\n        \"title\": \"rr\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": true,\n        \"provider\": \"udacity\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"custom\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-09T15:00:06.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63e50a76d8edc978e5106e35\\\"}\",\n        \"title\": \"Test old event\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e2858aa12e72435f0c29f07\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:17:57.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61dd631075acd131e8c75f3d\\\",\\\"requestId\\\":\\\"63f72f451cf24454ca3a1087\\\"}\",\n        \"title\": \"event with manager approval and price\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T13:50:19.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"63ff581b119cc4878b8c7beb\\\"}\",\n        \"title\": \"test price\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T13:51:09.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"63ff584d119cc4878b8c7d12\\\"}\",\n        \"title\": \"test price\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T14:11:55.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"63ff5d2b119cc4878b8c8177\\\"}\",\n        \"title\": \"test price\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T14:15:02.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c1b01fa6639357888c43bf\\\",\\\"requestId\\\":\\\"63ff5de6119cc4878b8c8300\\\"}\",\n        \"title\": \"test price\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e00e6a65e2da92f10200bde\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T09:11:30.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61f93318de33ff1e6830caf5\\\",\\\"requestId\\\":\\\"640068420e3a4bbc90a3de37\\\"}\",\n        \"title\": \"test 123\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-02T09:13:34.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"640068be0e3a4bbc90a3df44\\\"}\",\n        \"title\": \"test 123\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:18:30.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"640593c69273d1468a35e332\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:27:52.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"640595f89273d1468a35e6d7\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T07:31:59.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"640596ef9273d1468a35e952\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T13:24:45.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"6405e99e9614617e5220e9df\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T13:30:36.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"6405eafc0ab43c84141fd944\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T13:57:22.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"6405f1421d4676862c42a12a\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T13:58:21.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"6405f17d1d4676862c42a1b4\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T21:38:28.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"64065d540584bb15e11be991\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T21:44:40.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"64065ec8497cdd1644c76556\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T21:51:27.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329b04a93a5722f02b7faa6\\\",\\\"requestId\\\":\\\"6406605fd77a2517146f20a6\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T22:08:41.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63a155ed7534ec91974670ac\\\",\\\"requestId\\\":\\\"64066469fbd79e18d0575b76\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T22:17:13.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63a155ed7534ec91974670ac\\\",\\\"requestId\\\":\\\"64066669e633a019171d1642\\\"}\",\n        \"title\": \"Event 5$\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"internal\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:31:13.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63d77241168811de5b5ed464\\\"}\",\n        \"title\": \"testttt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-22T15:49:29.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63f63989da5722174f538440\\\"}\",\n        \"title\": \"manager test\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e2858aa12e72435f0c29f07\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T09:57:39.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63f73893ba74205f2922340b\\\"}\",\n        \"title\": \"Untitled Eventsdaf sdfa\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e2cb03b9b2be400179031c0\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T12:03:47.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63f75623ba74205f2922393d\\\"}\",\n        \"title\": \"waiting list\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e2858aa12e72435f0c29f07\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T12:04:01.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63f75631ba74205f29223977\\\"}\",\n        \"title\": \"waiting list\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e1c136d45b8e97a9ca25eb1\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T13:01:53.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63f763c1e25e77727717008a\\\"}\",\n        \"title\": \"testtt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5f4b57fd0facee5020c59bd8\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-23T13:18:27.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":null,\\\"requestId\\\":\\\"63f767a3e25e777277170124\\\"}\",\n        \"title\": \"testtt\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"manager\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"60c0da07dc1c413a34c039e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-01-30T07:28:17.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63c7b0f7e58bf6850dca5f9d\\\",\\\"requestId\\\":\\\"63d77191168811de5b5ed284\\\"}\",\n        \"title\": \"Equity Research & Equity Analyst Program 2022\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T07:35:28.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c074d7ccdf9e3f0c392cc4\\\",\\\"requestId\\\":\\\"63df5c40ac8e72086744c097\\\"}\",\n        \"title\": \"Become a Product Manager | Learn the Skills & Get the Job\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T07:45:18.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6329afe893a5722f02b7fa5a\\\",\\\"requestId\\\":\\\"63df5e8eac8e72086744c339\\\"}\",\n        \"title\": \"Become a Product Manager | Learn the Skills & Get the Job\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T09:12:09.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62d54e65364dc96a871445d9\\\",\\\"requestId\\\":\\\"63df72e95e7641173d5e8a9f\\\"}\",\n        \"title\": \"Better Virtual Meetings: How to Lead Effective Meetings\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-05T12:41:58.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c0a28b1894e14f98729779\\\",\\\"requestId\\\":\\\"63dfa416e7eea52b45272547\\\"}\",\n        \"title\": \"100 Days of Code: The Complete Python Pro Bootcamp for 2022\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-16T09:06:20.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"6347c565a42274e498db59c5\\\",\\\"requestId\\\":\\\"63edf20ce369a79ff93c75f9\\\"}\",\n        \"title\": \"Become a SuperLearner® 2: Learn Speed Reading & Boost Memory\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"62eb7f39d7d6040f315aa906\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-20T14:57:16.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"62eb7f39d7d60433795aa90b\\\",\\\"requestId\\\":\\\"63f38a4c8ae9a53ced4f4a33\\\"}\",\n        \"title\": \"Advanced agile communication skills for 21st Century leaders\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-02-26T10:17:13.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61c074d7ccdf9e3f0c392cc4\\\",\\\"requestId\\\":\\\"63fb31a98a6ef4aa90b8d690\\\"}\",\n        \"title\": \"Python for Business Data Analytics & Intelligence\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"zerotomastery\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T10:56:46.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63ff2f5be4d7aa0007fe14c9\\\",\\\"requestId\\\":\\\"63ff2f6ee4d7aa0007fe1533\\\"}\",\n        \"title\": \"The Complete SQL Bootcamp 2022: Go from Zero to Hero\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T11:07:15.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63ff31c564f5bbd2bf0a5c07\\\",\\\"requestId\\\":\\\"63ff31e364f5bbd2bf0a5c59\\\"}\",\n        \"title\": \"Women's Leadership\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T14:25:34.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63ff31c564f5bbd2bf0a5c07\\\",\\\"requestId\\\":\\\"63ff605efeee8b00078b0eb1\\\"}\",\n        \"title\": \"The Complete SQL Bootcamp 2022: Go from Zero to Hero\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-01T14:28:29.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63ff31c564f5bbd2bf0a5c07\\\",\\\"requestId\\\":\\\"63ff610dfeee8b00078b0f83\\\"}\",\n        \"title\": \"PMP Exam Prep Seminar - Complete Exam Coverage with 35 PDUs\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T07:30:55.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61f93318de33ff1e6830caf5\\\",\\\"requestId\\\":\\\"6404452f7672e6fe92d371b4\\\"}\",\n        \"title\": \"Data Science with R\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"pluralsight\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T12:50:43.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63ff31c564f5bbd2bf0a5c07\\\",\\\"requestId\\\":\\\"64049023e70a13000860408e\\\"}\",\n        \"title\": \"Practical Guide to Python\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"frontendmasters\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5ddf8f013af1e8212c72ec01\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-05T13:06:27.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"63ff31c564f5bbd2bf0a5c07\\\",\\\"requestId\\\":\\\"640493d3e70a130008604257\\\"}\",\n        \"title\": \"Creating and Leading Effective Teams\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"pluralsight\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"budget_request_created\",\n        \"userId\": \"5e01b5253187c23e90cd2cac\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-06T21:24:29.000Z\"\n        },\n        \"metadata\": \"{\\\"creditId\\\":\\\"61dd635575acd131e8c75f3f\\\",\\\"requestId\\\":\\\"64065a0dc87c99133761d484\\\"}\",\n        \"title\": \"Java 11 For Complete Beginners\",\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": false,\n        \"provider\": \"udemy\",\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": \"marketplace\"\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63ec6dc687241031a5b2e7e9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-13T11:39:52.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f72ba1edad4c4a75fcfa99\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-13T13:40:23.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    },\n    {\n        \"eventType\": \"user_active_day\",\n        \"userId\": \"63f3aa45002af0e776adede9\",\n        \"tid\": \"5ddbee821c9d440000ba72a9\",\n        \"timestamp\": {\n            \"value\": \"2023-03-14T07:10:06.000Z\"\n        },\n        \"metadata\": null,\n        \"title\": null,\n        \"creator\": null,\n        \"type\": null,\n        \"customRequest\": null,\n        \"provider\": null,\n        \"assignedBy\": null,\n        \"balanceAmount\": null,\n        \"duration\": null,\n        \"tags\": null,\n        \"skillName\": null,\n        \"channelName\": null,\n        \"authority\": null,\n        \"searchValue\": null,\n        \"progressStatus\": null,\n        \"price\": null,\n        \"feedbackValue\": null,\n        \"feedbackIsRecommended\": null,\n        \"requestType\": null\n    }\n]"}],"_postman_id":"08d8912e-cc79-4532-ab4f-f932b62d3d60"}],"id":"034b32b8-e29d-4fe8-abfd-e552a5125cf7","_postman_id":"034b32b8-e29d-4fe8-abfd-e552a5125cf7","description":""},{"name":"Juno MCP Server","item":[],"id":"8add8b44-be86-473b-8693-7e352debef3d","description":"<p>Enterprise Knowledge Access for AI Applications</p>\n<h4 id=\"overview\"><strong>Overview</strong></h4>\n<p>The Juno Model Context Protocol (MCP) remote server enables AI assistants and automation tools to query your organization's learning management system directly. Users access company knowledge through natural language queries without leaving their workflow, while maintaining existing permissions and security controls.</p>\n<h4 id=\"core-capabilities\"><strong>Core Capabilities</strong></h4>\n<h5 id=\"knowledge-access\"><strong>Knowledge Access</strong></h5>\n<ul>\n<li><p>Real-time search across training materials, documentation, and learning content and media (videos, documents, images, etc.)</p>\n</li>\n<li><p>Full document retrieval with source attribution</p>\n</li>\n<li><p>Automatic content updates as your knowledge base evolves</p>\n</li>\n<li><p>Permission-based access control mirroring Juno platform roles</p>\n</li>\n</ul>\n<h4 id=\"integration-points\"><strong>Integration Points</strong></h4>\n<ul>\n<li><p>Claude Desktop, Cursor, and MCP-compatible AI assistants</p>\n</li>\n<li><p>Custom automation workflows and AI agents</p>\n</li>\n<li><p>Internal tooling and applications via standard MCP protocol</p>\n</li>\n</ul>\n<h4 id=\"authentication--security\"><strong>Authentication &amp; Security</strong></h4>\n<h5 id=\"oauth-21-implementation\"><strong>OAuth 2.1 Implementation</strong></h5>\n<p>The integration uses OAuth 2.1 for secure, delegated access:</p>\n<ul>\n<li><p>User Authorization: One-time OAuth flow authenticates users and establishes scope-limited access</p>\n</li>\n<li><p>Token Management: Secure token storage with automatic refresh handling</p>\n</li>\n<li><p>Permission Inheritance: Users access only content authorized in their Juno account (role-based, team-based, or individually assigned)</p>\n</li>\n<li><p>No shared credentials/service account</p>\n</li>\n</ul>\n<h4 id=\"use-cases\"><strong>Use Cases</strong></h4>\n<h4 id=\"daily-operations\"><strong>Daily Operations</strong></h4>\n<p>Policy and procedure lookups during conversations, sales enablement content retrieval, onboarding checklist access for new hires, and compliance documentation reference.</p>\n<h4 id=\"automation--development\"><strong>Automation &amp; Development</strong></h4>\n<p>AI agents with company knowledge context, self-updating internal chatbots, workflow tools with integrated learning content, and custom knowledge search interfaces.</p>\n<h4 id=\"available-tools\"><strong>Available Tools</strong></h4>\n<h5 id=\"search\">Search</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>search(query: string, limit?: number) → DocumentResult[]\n\n</code></pre><p>Search for content in the company's Learning Management System (LMS) which is also used as a knowledge-base, and get the results with: \"id\" - the unique identifier of the content, \"title\" - content's title, and \"url\" - the content's URL.</p>\n<h5 id=\"fetch\">Fetch</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>fetch(id: string) → DocumentContent\n\n</code></pre><p>Retrieve the full contents of a document by its ID from the Learning Management System</p>\n<h4 id=\"lxp-search-when-the-user-have-lxp-module\">LXP Search (when the user have LXP module)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>lxp_search(query: string, limit?: number, freeOnly:boolean) → DocumentContent[]\n\n</code></pre><p>Search for external learning content (courses, videos) from providers like Udemy, YouTube, LinkedIn Learning, etc. Where the users can purchase with their company budget or access for free if available.</p>\n<h5 id=\"response-format\"><strong>Response Format</strong></h5>\n<p>Document metadata (title, URL, last updated), content excerpts with relevance scoring, and source attribution for citation.</p>\n<h5 id=\"requirements\"><strong>Requirements</strong></h5>\n<p>MCP-compatible client application, Juno’s OAuth authorization server supports OAuth2.1 dynamic registration, and per-user authentication via OAuth 2.0 flow.</p>\n<h4 id=\"implementation\"><strong>Implementation</strong></h4>\n<p>Implementation in MCP client like Claude and other supported chat MCP client is simply adding a connector in most cases through Settings →Connectors →Add custom connector →Give it the name “Juno Journey” and for the URL insert <a href=\"https://mcp-prod.the-juno.com/mcp\">https://mcp-prod.the-juno.com/mcp</a> →then click connect and follow the authentication flow , you would need to insert in the first time the subdomain of your Juno workspace (see screenshot below) , then click authorize , and you are ready to go.</p>\n<p><strong>Configuration Example</strong></p>\n<img src=\"https://content.pstmn.io/0e619b23-6a66-47e8-aef1-6c33773254af/aW1hZ2UucG5n\" alt=\"Add%20Juno%20MCP%20server%20in%20Claude\" width=\"458\" height=\"354\" />\n\n<img src=\"https://content.pstmn.io/48658ca0-1561-42f1-b19f-78b01b3ae9c5/aW1hZ2UucG5n\" width=\"540\" height=\"639\" />\n\n<p>Some of the MCP client (like Cursor, VS Code and etc.) would require to add the MCP configuration to their mcp.json file so you will need to add the below code to it.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"mcpServers\": {\n    \"juno-journey\": {\n      \"url\": \"https://mcp-prod.the-juno.com/mcp\",\n      \"type\":\"http\"\n    }\n    ...\n  }\n}\n\n</code></pre><p><strong>For any question feel free to reach us at:</strong> <a href=\"https://docs.google.com/document/d/1BeT2i1Gn96Fm_sz85_HYM1w4nA86T_6j/support@junojourney.com\">support@junojourney.com</a></p>\n<p>© 2025 Juno Journey. All rights reserved.</p>\n","_postman_id":"8add8b44-be86-473b-8693-7e352debef3d"}],"event":[{"listen":"prerequest","script":{"id":"375db6b9-52c4-42a9-aa65-81c18011f1e0","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"b7281418-9fee-46a2-afba-ccfc39ad2b42","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"token","value":"","disabled":true}]}